/** * Import graph proximity metric. * * Files that import or are imported by high-scoring files get a boost. * Uses a simple 1-hop propagation from seed scores. */ import type { SearchDatabase } from "../db.js"; /** * Compute import graph proximity scores. * Files that import/are imported by high-scoring files get a boost. * Seed files also get a connectivity bonus based on how many of their * neighbors are in the seed set. */ export declare function computeImportGraphScores(db: SearchDatabase, seedScores: Map, fileIdToChunkIds: Map): Map; //# sourceMappingURL=import-graph.d.ts.map