/**
 * @name AllergyIntoleranceSeverity
 * @description Clinical assessment of the severity of a reaction event as a whole, potentially considering multiple different manifestations.
 * @description mild | moderate | severe
 * @see <a href="https://hl7.org/fhir/R4/valueset-reaction-event-severity.html">AllergyIntoleranceSeverity</a>
 * @version R4
 * @author Roberto Araneda Espinoza
 */
export type AllergyIntoleranceSeverityType = 'mild' | 'moderate' | 'severe';
