import type { CorrelationCapability, EvidenceGraph, NormalizedObservation } from "./types.js"; /** * Correlate normalized observations into an immutable EvidenceGraph. * * Rules are evaluated in priority order. Each matched rule produces one * claim. Unmatched observations become fallback claims that assert their * own fact. */ export declare function correlateEvidence(observations: NormalizedObservation[], capabilities: CorrelationCapability[]): EvidenceGraph;