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