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