import { FunctionComponent, ReactNode } from 'react';
export interface TreeProps {
    value?: any;
    children?: ReactNode;
}
declare const Tree: FunctionComponent<TreeProps>;
export default Tree;
