import { TreeProps } from './types';
declare function Tree<NodeObjectType extends {
    childNodes?: NodeObjectType[];
}, LeafType>({ nodes, search, filterHighlighted, highlightClassName, idKey, searchBy, renderLeaf, ...props }: TreeProps<NodeObjectType, LeafType>): JSX.Element;
export default Tree;
