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