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