export interface SupportedDocxRowFormattingChange { id: string; author: string; date: string; before: string; } /** * Relationship-free `w:trPrChange` whose prior snapshot contains only * `w:cantSplit`, `w:tblHeader`, `w:trHeight`, `w:hidden`, `w:jc`, * `w:gridBefore`, `w:gridAfter`, `w:wBefore`, `w:wAfter`, `w:cnfStyle`, `w:divId`, * and/or `w:tblCellSpacing`. * Broader row property sets stay on the opaque OMML path. */ export declare function isSupportedDocxRowFormattingChange(change: Element): boolean; export declare function supportedDocxRowFormattingChangeFromProperties(rowProperties: Element | null | undefined): SupportedDocxRowFormattingChange | null; export declare function applyDocumentRowFormattingChangeToElement(row: HTMLTableRowElement, change: SupportedDocxRowFormattingChange): void;