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