/** * Story 1.4 / 3.4 — cross-repo link result builder (consumes scan graphs). */ import type { LinkResult, SutraGraph } from "./types.js"; /** Build LinkResult from client + server graphs (reuse reconcile matching). */ export declare function linkGraphs(graphs: SutraGraph[], repoPaths?: string[]): LinkResult;