import { AllergyIntolerance, CodeableConcept, Reference } from '@i4mi/fhir_r4';
/**
 * This implements the changes from the CHAllergyIntolerance profile to the default AllergyIntolerance
 * resource
 * @see       https://fhir.ch/ig/ch-allergyintolerance/StructureDefinition-ch-allergyintolerance.html
 * @version   2.0.0-ballot
 * @date      2023-12-05
 */
export interface CHAllergyIntolerance extends AllergyIntolerance {
    meta: {
        profile: CHAllergyIntoleranceProfile[];
    };
    code: CodeableConcept;
    patient: Reference;
}
type CHAllergyIntoleranceProfile = 'http://fhir.ch/ig/ch-allergyintolerance/StructureDefinition/ch-allergyintolerance' | string;
export {};
