import type { ResolvedArtifact } from "./schema.js"; export interface LookupResult { id: string; artifact: ResolvedArtifact; } export interface LookupOverlap { path: string; matching_artifacts: string[]; } export declare function lookupByPath(filePath: string, artifacts: Record): LookupResult[]; export declare function detectOverlaps(filePaths: string[], artifacts: Record): LookupOverlap[]; //# sourceMappingURL=lookup.d.ts.map