import type { RawCommands } from '@tiptap/core'; import type { NodeType } from '@tiptap/pm/model'; declare module '@tiptap/core' { interface Commands { deleteNode: { /** * delete a node. */ deleteNode: (id: string | NodeType) => ReturnType; }; } } export declare const deleteNode: RawCommands['deleteNode']; //# sourceMappingURL=deleteNode.d.ts.map