/**
 * @name QuestionnaireEnableOperator
 * @description The criteria by which a question is enabled.
 * @description exists | = | != | > | < | >= | <=
 * @see <a href="https://hl7.org/fhir/R4/valueset-questionnaire-enable-operator.html">QuestionnaireEnableOperator</a>
 * @version R4
 * @author Claudia Alarcón Lazo
 */
export type QuestionnaireEnableOperatorType = 'exists' | '=' | '!=' | '>' | '<' | '>=' | '<=';
