import type { EditorState, Transaction } from '@tiptap/pm/state'; import type { WorkDocumentChangeIdentity } from './work-document-changes'; interface DocumentCellFormattingTrackingOptions { createChange: () => WorkDocumentChangeIdentity; } /** * When track-changes is on, cell verticalAlign / solid fill / margin / * preferred-width / noWrap / textDirection / fitText / hideMark / cnfStyle / hMerge / vMerge / gridSpan / tcBorders * edits become reviewable `cell-formatting` revisions. */ export declare function trackDocumentCellFormattingTransaction(transaction: Transaction, state: EditorState, options: DocumentCellFormattingTrackingOptions): boolean; export {};