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