import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Address } from "./Address"; import { CustomerTaxIds } from "./CustomerTaxIds"; export declare const BulkUpdateCustomerData: core.serialization.ObjectSchema; export declare namespace BulkUpdateCustomerData { interface Raw { given_name?: (string | null | undefined) | null; family_name?: (string | null | undefined) | null; company_name?: (string | null | undefined) | null; nickname?: (string | null | undefined) | null; email_address?: (string | null | undefined) | null; address?: Address.Raw | null; phone_number?: (string | null | undefined) | null; reference_id?: (string | null | undefined) | null; note?: (string | null | undefined) | null; birthday?: (string | null | undefined) | null; tax_ids?: CustomerTaxIds.Raw | null; version?: (bigint | number) | null; } }