import { Editor, Range } from "@tiptap/core"; //#region src/utilities/can-insert-node-at.d.ts /** * Check if a node of a specific type can be inserted at a specific position in the editor. * * @return True if the node can be inserted, false otherwise. */ declare function canInsertNodeAt({ editor, nodeType, range }: { editor: Editor; nodeType: string; range: Range; }): boolean; //#endregion export { canInsertNodeAt }; //# sourceMappingURL=can-insert-node-at.d.ts.map