import { Editor } from '../../core/Editor.js'; import { TextAddress } from '@superdoc/document-api'; export type CommentAnchorStatus = 'open' | 'resolved'; export interface CommentAnchor { commentId: string; importedId?: string; status: CommentAnchorStatus; target: TextAddress; isInternal?: boolean; pos: number; end: number; attrs: Record; } export declare function listCommentAnchors(editor: Editor): CommentAnchor[]; export declare function resolveCommentAnchorsById(editor: Editor, commentId: string): CommentAnchor[]; //# sourceMappingURL=comment-target-resolver.d.ts.map