import { type WorkDocumentImageLayoutOptions } from './work-document-image-layout'; import { type WorkDocumentImageWrapContour } from './work-document-image-wrap-contour'; interface DocxImageWrapPatch { marker: string; layout: 'through' | 'tight'; options: WorkDocumentImageLayoutOptions; contour: WorkDocumentImageWrapContour; } export declare class DocxImageWrapPatchCollector { readonly patches: DocxImageWrapPatch[]; private nextMarker; marker(options: WorkDocumentImageLayoutOptions, contour: WorkDocumentImageWrapContour | null): string; } export declare function patchDocxImageWraps(buffer: ArrayBuffer, patches: readonly DocxImageWrapPatch[]): Promise; export {};