import type { RawCommands } from '@tiptap/core'; declare module '@tiptap/core' { interface Commands { setNodeAlignment: { /** * Update node alignment ('CENTER' | 'LEFT' | 'RIGHT'). */ setNodeAlignment: (alignment: 'CENTER' | 'LEFT' | 'RIGHT') => ReturnType; }; } } export declare const setNodeAlignment: RawCommands['setNodeAlignment']; //# sourceMappingURL=setNodeAlignment.d.ts.map