import { type WorkDocumentParagraphIdentity } from './work-document-paragraph-identity'; export interface ImportedDocxParagraphIdentityMarker extends WorkDocumentParagraphIdentity { marker: string; } export interface ImportedDocxParagraphIdentityMarkers { paragraphs: ImportedDocxParagraphIdentityMarker[]; } export declare function markDocxParagraphIdentities(document: Document): ImportedDocxParagraphIdentityMarkers; export declare function applyImportedDocxParagraphIdentityMarkers(document: Document, markers: ImportedDocxParagraphIdentityMarkers): void; export declare function hasImportedDocxParagraphIdentityMarkers(markers: ImportedDocxParagraphIdentityMarkers): boolean;