interface DocxParagraphMarkChangePatch { marker: string; id: number; kind: 'insertion' | 'deletion'; author: string; date: string; } export declare class DocxParagraphMarkChangePatchCollector { readonly patches: DocxParagraphMarkChangePatch[]; register(element: HTMLElement, id: number): string | null; } export declare function patchDocxParagraphMarkChanges(buffer: ArrayBuffer, patches: readonly DocxParagraphMarkChangePatch[]): Promise; export {};