import type * as CandidApi from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { Date_ } from "../../commons/types/Date_"; import { EncounterExternalId } from "../../commons/types/EncounterExternalId"; export declare const AllocationEarmarkType: core.serialization.Schema; export declare namespace AllocationEarmarkType { type Raw = AllocationEarmarkType.DateOfService | AllocationEarmarkType.ExternalEncounterId; interface DateOfService { type: "date_of_service"; value: Date_.Raw; } interface ExternalEncounterId { type: "external_encounter_id"; value: EncounterExternalId.Raw; } }