import React from 'react'; import { Node, ExtNode } from 'relatives-tree/lib/types'; interface Props { nodes: ReadonlyArray; rootId: string; width: number; height: number; placeholders?: boolean; className?: string; renderNode: (node: ExtNode) => React.ReactNode; } declare const _default: React.NamedExoticComponent; export default _default;