import type { RawCommands } from '@tiptap/core'; import type { MarkType, NodeType } from '@tiptap/pm/model'; declare module '@tiptap/core' { interface Commands { updateAttributesWithDeepMerge: { /** * Update attributes of a node or mark (deep merge). */ updateAttributesWithDeepMerge: (typeOrName: string | NodeType | MarkType, attributes: Record) => ReturnType; }; } } export declare const updateAttributesWithDeepMerge: RawCommands['updateAttributesWithDeepMerge']; //# sourceMappingURL=updateAttributesWithDeepMerge.d.ts.map