import type * as Vital from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { Ethnicity } from "./Ethnicity.js"; import { GenderIdentity } from "./GenderIdentity.js"; import { GuarantorDetails } from "./GuarantorDetails.js"; import { Race } from "./Race.js"; import { SexualOrientation } from "./SexualOrientation.js"; export declare const ClientFacingPatientDetailsCompatible: core.serialization.ObjectSchema; export declare namespace ClientFacingPatientDetailsCompatible { interface Raw { first_name?: string | null; last_name?: string | null; dob: string; gender: string; phone_number?: string | null; email?: string | null; medical_proxy?: GuarantorDetails.Raw | null; race?: Race.Raw | null; ethnicity?: Ethnicity.Raw | null; sexual_orientation?: SexualOrientation.Raw | null; gender_identity?: GenderIdentity.Raw | null; } }