import type { AccessMemory } from "./types/accessMemory.js"; import type { GraphBundle } from "./types/graph.js"; export declare function computeContinuityScores(accessMemory: AccessMemory | undefined, graphBundle: GraphBundle | undefined): Map; /** * Sum a work-unit's member-file continuity scores (rounded to fixed precision so * ULP-level float differences can't reorder units). Higher = more of the unit's * files are connected to already-touched code. Single-sourced so audit's * per-packet mass and remediate's per-block mass reduce identically — both * normalize each path with {@link normalizeGraphPath} to match the scorer's seed * keys, and both round at 1e6 so the derived ordering is stable. */ export declare function continuityMassForPaths(paths: readonly string[], scores: Map): number; //# sourceMappingURL=continuityScore.d.ts.map