export declare type noop = () => {}; export interface AreaPickerProps { visible?: boolean; onModalClose?: Function; onChooseHandler?: Function; limit?: number; organizationListChild: (...args: any) => Promise | noop; organizationGetRoot: (...args: any) => Promise | noop; }