import type { RawCommands } from '@tiptap/core'; declare module '@tiptap/core' { interface Commands { setNodeSize: { /** * Update node size ('CONTENT' | 'SMALL' | 'ORIGINAL' | 'FULL_WIDTH'). */ setNodeSize: (size: 'CONTENT' | 'SMALL' | 'ORIGINAL' | 'FULL_WIDTH') => ReturnType; }; } } export declare const setNodeSize: RawCommands['setNodeSize']; //# sourceMappingURL=setNodeSize.d.ts.map