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