///
import { ApiType, BusinessTreeSelectBuilderProps, BusinessTreeSelectProps, BusinessTreeSelectSelfProps } from './types';
/**
* 数据挂在window上作为缓存, 避免重复请求
*/
export declare const CacheName = "@@treeSelectData";
export declare const CacheStatusName = "@@treeSelectDataIsStart";
declare function BusinessTreeSelectBuilder({ apis, defaultProps, }: BusinessTreeSelectBuilderProps): (props: BusinessTreeSelectProps) => import("react/jsx-runtime").JSX.Element | null;
export default BusinessTreeSelectBuilder;
export declare const clearTreeSelectCache: (type?: string) => void;
export declare const BizTreeApi: React.FC;
export declare const BusinessTreeSelectSelf: React.FC>;