import { type ImportedDocxImageLayoutMarkerState, type ImportedDocxImageLayoutMarkers } from './work-docx-image-layout-import'; import type { OoxmlPackage } from './work-ooxml-package'; interface MarkedNoteImagePart { document: Document; path: string; } export interface ImportedDocxNoteImageMarkers { markers: ImportedDocxImageLayoutMarkers; parts: MarkedNoteImagePart[]; } export declare function markDocxNoteImageLayouts(archive: OoxmlPackage, state: ImportedDocxImageLayoutMarkerState): Promise; export {};