import type * as Vital from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { Address } from "./Address.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 UserInfo: core.serialization.ObjectSchema; export declare namespace UserInfo { interface Raw { first_name: string; last_name: string; email: string; phone_number: string; gender: string; dob: string; address: Address.Raw; medical_proxy?: GuarantorDetails.Raw | null; race?: Race.Raw | null; ethnicity?: Ethnicity.Raw | null; sexual_orientation?: SexualOrientation.Raw | null; gender_identity?: GenderIdentity.Raw | null; } }