import * as React from 'react'; import RcTreeSelect from 'rc-tree-select'; import { TreeSelectProps } from './interface'; import { SelectLocale } from '../select'; export { TreeData, TreeSelectProps } from './interface'; export default class TreeSelect extends React.Component { static TreeNode: any; static SHOW_ALL: any; static SHOW_PARENT: any; static SHOW_CHILD: any; static defaultProps: { prefixCls: string; transitionName: string; choiceTransitionName: string; showSearch: boolean; dropdownClassName: string; }; private rcTreeSelect; constructor(props: TreeSelectProps); focus(): void; blur(): void; saveTreeSelect: (node: typeof RcTreeSelect) => void; renderTreeSelect: (locale: SelectLocale) => JSX.Element; render(): JSX.Element; }