import { Extension } from '@tiptap/core'; export interface DocumentTableDimensions { rows: number; columns: number; } export interface InsertDocumentTableOptions { headerRow?: boolean; restoreFocus?: boolean; } declare module '@tiptap/core' { interface Commands { documentTableCommands: { insertDocumentTable: (dimensions: DocumentTableDimensions, options?: InsertDocumentTableOptions) => ReturnType; }; } } export declare const DocumentTableCommands: Extension;