import React from 'react'; import { EditorApiType } from '@lingxiteam/editor-types'; interface SelectServiceType { onChange?: any; className?: any; dataSource?: any; selectedService?: any; allowClear?: boolean; showChild?: boolean; size?: any; needMarginBottom?: boolean; value?: any; DSLCore?: any; propsKey?: string; serviceTabs?: any[]; getEditorApi: () => EditorApiType; } declare const SelectService: React.FC; export default SelectService;