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