import { TreeSelectProps } from 'antd';
import { FC } from 'react';
import { TREE_SELECT } from '../../Types';
export interface ITreeSelect {
    ctype: typeof TREE_SELECT;
    props: TreeSelectProps;
}
declare const TreeSelect: FC<ITreeSelect>;
export default TreeSelect;
