import type { BaseClientOptions } from "../../../../BaseClient"; import { type NormalizedClientOptionsWithAuth } from "../../../../BaseClient"; import { AppointmentsClient } from "../resources/appointments/client/Client"; import { CoveragesClient } from "../resources/coverages/client/Client"; import { EligibilityChecksClient } from "../resources/eligibilityChecks/client/Client"; import { ImagesClient } from "../resources/images/client/Client"; import { ListsClient } from "../resources/lists/client/Client"; import { NotesClient } from "../resources/notes/client/Client"; import { PatientsClient } from "../resources/patients/client/Client"; import { TagsClient } from "../resources/tags/client/Client"; export declare namespace PreEncounterClient { type Options = BaseClientOptions; } export declare class PreEncounterClient { protected readonly _options: NormalizedClientOptionsWithAuth; protected _appointments: AppointmentsClient | undefined; protected _coverages: CoveragesClient | undefined; protected _eligibilityChecks: EligibilityChecksClient | undefined; protected _images: ImagesClient | undefined; protected _lists: ListsClient | undefined; protected _notes: NotesClient | undefined; protected _patients: PatientsClient | undefined; protected _tags: TagsClient | undefined; constructor(options: PreEncounterClient.Options); get appointments(): AppointmentsClient; get coverages(): CoveragesClient; get eligibilityChecks(): EligibilityChecksClient; get images(): ImagesClient; get lists(): ListsClient; get notes(): NotesClient; get patients(): PatientsClient; get tags(): TagsClient; }