import { FC } from 'react'; import { EventInputBaseType } from '../EventInputBaseType'; interface SelectExportFieldsProps extends EventInputBaseType { onChange: (e: any) => void; value?: any; data: any; objectService?: any; queryServices?: any; todoOptionKey: 'busiObjectFields' | 'sqlServiceFields'; } declare const SelectExportFields: FC; export default SelectExportFields;