import type * as CandidApi from "../../../../api/index"; import * as core from "../../../../core"; import type * as serializers from "../../../index"; import { Email } from "../../commons/types/Email"; import { PhoneNumberOptional } from "../../commons/types/PhoneNumberOptional"; import { StreetAddressShortZipOptional } from "../../commons/types/StreetAddressShortZipOptional"; import { NonInsurancePayerId } from "../../nonInsurancePayers/resources/v1/types/NonInsurancePayerId"; import { Gender } from "./Gender"; import { PatientNonInsurancePayerInfoCreateOptional } from "./PatientNonInsurancePayerInfoCreateOptional"; export declare const PatientUpdateWithOptionalAddress: core.serialization.ObjectSchema; export declare namespace PatientUpdateWithOptionalAddress { interface Raw { first_name?: string | null; last_name?: string | null; gender?: Gender.Raw | null; external_id?: string | null; date_of_birth?: string | null; address?: StreetAddressShortZipOptional.Raw | null; phone_numbers?: PhoneNumberOptional.Raw[] | null; phone_consent?: boolean | null; email?: Email.Raw | null; email_consent?: boolean | null; auto_charge_consent?: boolean | null; non_insurance_payers?: NonInsurancePayerId.Raw[] | null; non_insurance_payers_info?: PatientNonInsurancePayerInfoCreateOptional.Raw[] | null; } }