import type { InsightCandidate } from './types.js'; export declare function parseInsightCandidate(raw: string, allowedEvidenceIds: Set): InsightCandidate; export declare function scoreInsight(candidate: InsightCandidate): number; export declare function isValuableInsight(candidate: InsightCandidate): boolean;