import { type AnchorContextIndex } from "./anchor-context.js"; import type { Comment, ReanchorResult } from "./types.js"; /** * Resolve uncertain comments from nearby high-confidence anchors. * * Each landmark votes for a local source-to-target displacement rather than * global document order, allowing whole sections to move independently. * Newly confirmed exact anchors become landmarks in subsequent rounds. */ export declare function reconcileCommentAnchors(comments: Comment[], results: ReanchorResult[], anchorContext: AnchorContextIndex): ReanchorResult[]; //# sourceMappingURL=global-reconciliation.d.ts.map