// ============================================ // Risk Treatment Types // ============================================ export type RiskTreatment = | "accept" | "mitigate" | "transfer" | "avoid" | "not_defined"; export interface RiskTreatmentValue { /** The selected treatment strategy */ treatment: RiskTreatment; /** Human-readable explanation for the chosen strategy */ rationale?: string; } export interface TreatmentOption { id: RiskTreatment; label: string; description: string; hint?: string; }