import { type WorkDocumentImageLayer, type WorkDocumentImageLayout } from './work-document-image-layout'; interface DocxImageLayerPatch { marker: string; layer: WorkDocumentImageLayer; } export declare class DocxImageLayerPatchCollector { readonly patches: DocxImageLayerPatch[]; private nextMarker; marker(layout: WorkDocumentImageLayout, layer: WorkDocumentImageLayer): string; } export declare function patchDocxImageLayers(buffer: ArrayBuffer, patches: readonly DocxImageLayerPatch[]): Promise; export {};