import React from 'react'; export interface SelectServiceProps { onChange: (data: any) => void; className?: React.CSSProperties; dataSource: any[]; selectedService: any; allowClear?: boolean; showChild?: boolean; size?: string; needMarginBottom?: boolean; refreshAppServiceArr?: (callback: any) => void; showServiceAttrs?: (source: any, data: any) => any[]; getCatagoryByKey?: (key: any) => Promise; disabled?: boolean; } declare const SelectService: React.FC; export default SelectService;