import * as React from 'react'; import { TreeNode, SHOW_ALL, SHOW_PARENT, SHOW_CHILD } from './rcTreeSelect'; import { TreeSelectProps } from './interface'; import './style/index.less'; declare const TreeSelectRef: React.ForwardRefExoticComponent>; declare type InternalTreeSelectType = typeof TreeSelectRef; interface TreeSelectInterface extends InternalTreeSelectType { TreeNode: typeof TreeNode; SHOW_ALL: typeof SHOW_ALL; SHOW_PARENT: typeof SHOW_PARENT; SHOW_CHILD: typeof SHOW_CHILD; } declare const TreeSelect: TreeSelectInterface; export default TreeSelect;