import type { WorkDocumentComment } from './work-types'; import { type OoxmlPackage } from './work-ooxml-package'; export interface ImportedDocxCommentRange { id: string; start: string; end: string; } export interface ImportedDocxCommentMarkers { comments: WorkDocumentComment[]; ranges: ImportedDocxCommentRange[]; } export declare function markDocxComments(document: Document, archive: OoxmlPackage): Promise; export declare function applyImportedDocxCommentMarkers(document: Document, markers: ImportedDocxCommentMarkers): void; export declare function hasImportedDocxCommentMarkers(markers: ImportedDocxCommentMarkers): boolean;