import React from 'react'; declare const TREESELECT_WRAPPER_CLASSNAME = "ued-treeSelect-wrap"; declare const WrapperTreeSelect: ({ children }: { children: JSX.Element; }) => React.FunctionComponentElement; export interface MyTreeSelectProps { value?: any; visible?: boolean; onChange?: (e: any, label: any, ext: any) => void; onValueRelease?: (value: any) => void; getCompPropMapState?: (id: string, type: string) => any; compId?: string; name?: string; fieldName: string; required?: any; hidden?: boolean; regexp?: any; message?: any; label?: any; labelCol?: any; wrapperCol?: any; text?: any; selfSpan?: number; colSpan?: number; dataSource?: any; style?: React.CSSProperties; treeService?: any; treeDefaultExpandAll?: boolean; treeData?: any; onDataSourceRelease?: (data: any[]) => void; isAsync?: boolean; asyncService?: any; showWrapperContainer: boolean; wrapperContainer: any; titleTip?: any; tipIcon?: any; tipLocation?: any; tipContent?: any; tipPlacement?: any; isSelectAll?: boolean; treeCheckable?: boolean; onTreeExpand?: (nodeKey: any, childrenKey: any, parentNodeKey: any, parentNodeData: any) => void; onSelectAllRelease?: () => void; colon?: boolean; multiple: boolean; isFormChild?: boolean | undefined; onSelect?: (key: any, data: any, parentNodeKey: any, parentNodeData: any) => void; readOnly: boolean; rules?: any[]; filter?: any; onSearch?: (value: any) => void; tipSize?: string; tipWidth?: string; tipHeight?: string; getEngineApis?: any; } declare const MyTreeSelect: React.ForwardRefExoticComponent>; export default MyTreeSelect; export { WrapperTreeSelect, TREESELECT_WRAPPER_CLASSNAME };