import type { RawCommands } from '@tiptap/core'; import type { JSONContent } from '@tiptap/react'; declare module '@tiptap/core' { interface Commands { replaceNode: { /** * Update node attributes by node id. */ replaceNode: (node: JSONContent) => ReturnType; }; } } export declare const replaceNode: RawCommands['replaceNode']; //# sourceMappingURL=replaceNode.d.ts.map