/** * @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 AllergyIntoleranceSeverity * @version R4 * @author Roberto Araneda Espinoza */ export type AllergyIntoleranceSeverityType = 'mild' | 'moderate' | 'severe';