import type { FC } from 'react'; import './index.less'; interface AddMemberByDeptModalProps { visible: boolean; onCancel: () => void; onOk: (values: any[]) => void; componentId: string; pageId: string; selectType: 'single' | 'multiple'; defaultValue: any[]; getEngineApis?: any; } declare const AddMemberByDeptModal: FC; export default AddMemberByDeptModal;