import { Node } from '@tiptap/core'; import type { WorkDocumentSectionBreakType, WorkDocumentSectionLayout } from './work-types'; declare module '@tiptap/core' { interface Commands { documentSection: { insertDocumentSection: (breakAfter?: WorkDocumentSectionBreakType) => ReturnType; mergeDocumentSectionWithPrevious: () => ReturnType; updateActiveDocumentSection: (layout: WorkDocumentSectionLayout) => ReturnType; updateDocumentSection: (sectionId: string, layout: WorkDocumentSectionLayout) => ReturnType; }; } } export declare const DocumentSection: Node;