/** * Preemption Risk Scoring Engine * * Calculates risk scores and generates compliance impact assessments * * @author Jason Pellerin AI Solutionist */ import type { Input, PreemptionEvent, PreemptionRisk, ComplianceImpact, RagChunk, StateConflict } from '../utils/types.js'; export declare function calculatePreemptionRisk(event: PreemptionEvent, input: Input): { risk: PreemptionRisk; impact: ComplianceImpact; }; export declare function generateRagChunks(event: PreemptionEvent): RagChunk[]; export declare function analyzeStateConflicts(events: PreemptionEvent[], targetStates: string[]): StateConflict[]; //# sourceMappingURL=risk-scorer.d.ts.map