export type ItemType = "heading-1" | "heading-2" | "heading-3" | "image" | "code-block"; export type OnItemClickHandler = ({ id }: { id: ItemType; }) => void; interface NodeCommandProps { onItemClick?: OnItemClickHandler; } export declare const NodeCommand: ({ onItemClick }: NodeCommandProps) => import("react/jsx-runtime").JSX.Element; export {};