import type { FC } from 'react';
import './index.less';
export interface MobileMemberItemProps {
    staffName: string;
    staffId: string;
}
interface MobileMemberProps {
    onSelect: (v: boolean, obj: MobileMemberItemProps) => void;
    orgId?: string;
    flag?: boolean;
    memberList?: MobileMemberItemProps[];
    hasDefault: boolean;
    componentId?: string;
    pageId?: string;
    cRef?: any;
    departList?: any[];
    $$componentItem?: any;
    getEngineApis?: any;
}
declare const MobileMember: FC<MobileMemberProps>;
export default MobileMember;
