import type { EditorState, Transaction } from '@tiptap/pm/state'; import type { WorkDocumentChangeIdentity } from './work-document-changes'; interface DocumentRowFormattingTrackingOptions { createChange: () => WorkDocumentChangeIdentity; } /** * When track-changes is on, row cantSplit / repeatHeader / height / hidden / * alignment / gridBefore / gridAfter / widthBefore / widthAfter / cnfStyle / divId / * tblCellSpacing edits become reviewable `row-formatting` revisions. */ export declare function trackDocumentRowFormattingTransaction(transaction: Transaction, state: EditorState, options: DocumentRowFormattingTrackingOptions): boolean; export {};