import { type WorkDocumentNote, type WorkDocumentNoteKind } from './work-document-notes'; import type { WorkDocumentComment, WorkDocumentCommentReply } from './work-types'; export interface AssignedDocxCommentReply { id: number; reply: WorkDocumentCommentReply; } export interface AssignedDocxCommentThread { comment: WorkDocumentComment; id: number; replies: AssignedDocxCommentReply[]; } export declare function importedDocumentNoteId(kind: WorkDocumentNoteKind, target: string): string | null; export declare function assignDocxNoteIds(notes: readonly WorkDocumentNote[]): Map; export declare function assignDocxCommentThreads(comments: readonly WorkDocumentComment[]): AssignedDocxCommentThread[]; export declare function normalizeDocxCommentId(value: string | null | undefined): number | null;