import { type WorkDocumentCaptionKind } from './work-document-captions'; export interface ImportedDocxCaptionMarkers { captions: ImportedCaptionMarker[]; references: ImportedReferenceMarker[]; } interface ImportedCaptionMarker { start: string; end: string; id: string; kind: WorkDocumentCaptionKind; } interface ImportedReferenceMarker { start: string; end: string; targetId: string; } export declare function markDocxCaptionFields(document: Document): ImportedDocxCaptionMarkers; export declare function applyImportedDocxCaptionMarkers(document: Document, markers: ImportedDocxCaptionMarkers): void; export declare function hasImportedDocxCaptionMarkers(markers: ImportedDocxCaptionMarkers): boolean; export {};