import type { IndexFiles } from "../indexer/index-files.js"; import type { IndexMemory } from "../indexer/index-memory.js"; import type { CodeChunk, Evidence, RetrievalMethod } from "../types/index.js"; export interface EvidenceHit { chunk: CodeChunk; file: { path: string; }; score: number; } export declare function emitForHits(indexer: IndexFiles & IndexMemory, hits: EvidenceHit[], method: RetrievalMethod, cap?: number): { footer: string; evidence: Evidence[]; };