import * as z from "zod/v4-mini"; import { AddressInput, AddressInput$Outbound } from "./addressinput.js"; export type CustomerPortalCustomerUpdate = { billingName?: string | null | undefined; billingAddress?: AddressInput | null | undefined; taxId?: string | null | undefined; defaultPaymentMethodId?: string | null | undefined; }; /** @internal */ export type CustomerPortalCustomerUpdate$Outbound = { billing_name?: string | null | undefined; billing_address?: AddressInput$Outbound | null | undefined; tax_id?: string | null | undefined; default_payment_method_id?: string | null | undefined; }; /** @internal */ export declare const CustomerPortalCustomerUpdate$outboundSchema: z.ZodMiniType; export declare function customerPortalCustomerUpdateToJSON(customerPortalCustomerUpdate: CustomerPortalCustomerUpdate): string; //# sourceMappingURL=customerportalcustomerupdate.d.ts.map