import type { FC } from 'react';
import './index.less';
interface MobileAddMemberModalprops {
    visible: boolean;
    onClose: () => void;
    name: string;
    onOk: (res: any[]) => void;
    selectType: 'single' | 'multiple';
    hasDefault?: boolean;
    compType?: 'depart' | 'member';
    componentId?: string;
    pageId?: string;
    defaultValue?: any[];
    $$componentItem?: any;
    getEngineApis?: any;
}
declare const MobileAddMemberModal: FC<MobileAddMemberModalprops>;
export default MobileAddMemberModal;
