import { FC } from 'react'; import { TdTreeSelectProps } from './type'; import { NativeProps } from '../_util/withNativeProps'; export interface TreeSelectProps extends TdTreeSelectProps, NativeProps { } declare const TreeSelect: FC; export default TreeSelect;