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 { PhoneNumber } from "../../commons/types/PhoneNumber"; import { StreetAddressShortZip } from "../../commons/types/StreetAddressShortZip"; import { NonInsurancePayerId } from "../../nonInsurancePayers/resources/v1/types/NonInsurancePayerId"; import { Gender } from "./Gender"; import { PatientNonInsurancePayerInfoCreate } from "./PatientNonInsurancePayerInfoCreate"; export declare const PatientUpdate: core.serialization.ObjectSchema; export declare namespace PatientUpdate { interface Raw { first_name?: string | null; last_name?: string | null; gender?: Gender.Raw | null; external_id?: string | null; date_of_birth?: string | null; address?: StreetAddressShortZip.Raw | null; phone_numbers?: PhoneNumber.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?: PatientNonInsurancePayerInfoCreate.Raw[] | null; } }