import type { NodeModel } from "./types"; import type { ReactElement } from "react"; type Props = { id: NodeModel["id"]; depth: number; }; export declare const Node: (props: Props) => ReactElement | null; export {};