import type { Editor } from '@tiptap/core'; import type { Node as ProseMirrorNode } from '@tiptap/pm/model'; import type { DocumentTableCellFragmentMeasurement, DocumentTableRowFragmentPlan, MeasuredDocumentLayoutBlock } from './work-document-pagination-types'; export declare function createDocumentTableRowFragmentPlan(cells: readonly DocumentTableCellFragmentMeasurement[], rowHeight: number, maximumFragmentedRowHeight: number): DocumentTableRowFragmentPlan[]; export declare function measureDocumentTableRows(editor: Editor, tableNode: ProseMirrorNode, tableElement: HTMLElement, tableId: string, tableFrom: number, maximumFragmentedRowHeight: number): MeasuredDocumentLayoutBlock[];