import { TreeProps } from 'antd';
import { FC } from 'react';
import { TREE } from '../../Types';
export interface ITree {
    ctype: typeof TREE;
    props: TreeProps;
}
declare const Tree: FC<ITree>;
export default Tree;
