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<AddMemberByDeptModalProps>;
export default AddMemberByDeptModal;
