import type { FC } from 'react'; import './index.less'; export interface AddMemberModalprops { visible: boolean; onClose: () => void; name: string; onOk: (res: any[]) => void; selectType: 'single' | 'multiple'; hasDesignatedMembers?: boolean; componentId?: string; pageId?: string; initialValue?: any[]; getEngineApis?: any; dependOnDepartValue?: any[]; containCurrentUserOrg: any[]; } declare const AddMemberModal: FC; export default AddMemberModal;