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