import { HealthInformationTypes } from "../../../common/enums"; /** * Represents health information data. */ export declare class HealthInformationDTO { rawFhir?: boolean; fhirDocument?: Record; informationType: HealthInformationTypes; dto: Record; }