import { type DocxParagraphStyleSource } from './work-docx-paragraph-styles'; import { type DocxTableStyleSource } from './work-docx-table-styles'; import { type DocxThemeSource } from './work-docx-theme'; export interface ImportedDocxParagraphFormattingChangeMarker { marker: string; id: string; author: string; date: string; before: string; } export interface ImportedDocxParagraphFormattingChangeMarkers { paragraphs: ImportedDocxParagraphFormattingChangeMarker[]; } export declare function markDocxParagraphFormattingChanges(document: Document, styleSource?: DocxParagraphStyleSource, themeSource?: DocxThemeSource, tableStyleSource?: DocxTableStyleSource): ImportedDocxParagraphFormattingChangeMarkers; export declare function applyImportedDocxParagraphFormattingChangeMarkers(document: Document, markers: ImportedDocxParagraphFormattingChangeMarkers): void; export declare function hasImportedDocxParagraphFormattingChangeMarkers(markers: ImportedDocxParagraphFormattingChangeMarkers): boolean; export declare function isSupportedDocxParagraphFormattingChange(change: Element): boolean;