import React from 'react'; export interface ServiceContentProps { onChange: (item: any) => void; dataSource: any[]; showChild?: boolean; selectedServiceItem?: any; setSelectedServiceItem: (item: any) => void; selectedService: any; popoverVisible: boolean; showServiceAttrs: (source: any, data: any) => any[]; getCatagoryByKey: (key: any) => Promise; } declare const ServiceContent: React.ForwardRefExoticComponent>; export default ServiceContent;