import type { Finding } from "./finding.js"; /** * Open each sibling repo's derived FactStore READ-ONLY, read its findings, * pool them into one Finding[] deduplicated by Finding.id (keep first, * stable order). PURE: no LLM, no network. A missing/corrupt sibling is * skipped, never fatal. * * @param repoPaths Absolute repo-root paths (each has a derived facts.db). * @param scope FactStore scope to read from (defaults to HUB_SCOPE). */ export declare function collectFindings(repoPaths: string[], scope?: string): Finding[]; //# sourceMappingURL=collector.d.ts.map