import { FC } from 'react'; import './index.less'; interface SelectFieldsProps { loading?: boolean; onChange: any; curParentCode?: string; parentCodeList?: any; selectedKeys: any; setSelectedKeys: any; finalFields: any; setFields?: any; } declare const SelectFields: FC; export default SelectFields;