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 "../../../../types/Address.js"; import { Ethnicity } from "../../../../types/Ethnicity.js"; import { GenderIdentity } from "../../../../types/GenderIdentity.js"; import { GuarantorDetails } from "../../../../types/GuarantorDetails.js"; import { Race } from "../../../../types/Race.js"; import { SexualOrientation } from "../../../../types/SexualOrientation.js"; export declare const UserInfoCreateRequest: core.serialization.Schema; export declare namespace UserInfoCreateRequest { 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; } }