/// <reference types="react" />
import { INode } from "../HierarchyNode/HierarchyNode";
import "./ReactHierarchy.scss";
export interface ReactHierarchyProps {
    nodes: INode[];
    direction: 'vertical' | 'horizontal';
    randerNode: Function;
}
declare const ReactHierarchy: ({ nodes, direction, randerNode }: ReactHierarchyProps) => JSX.Element;
export default ReactHierarchy;
