/**
 * @name ClinicalImpressionStatus
 * @description Codes that reflect the current state of a clinical impression within its overall lifecycle.
 * @description in-progress | completed | entered-in-error
 * @see <a href="https://hl7.org/fhir/R4/valueset-clinicalimpression-status.html">ClinicalImpressionStatus</a>
 * @version R4
 * @author Claudia Alarcón Lazo
 */
export type ClinicalImpressionStatusType = 'in-progress' | 'completed' | 'entered-in-error';
