import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { CustomerInvoiceSummary } from "./customer-invoice-summary.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type CustomerMultiCurrencyInvoiceSummary = { /** * customer_id is the unique identifier of the customer */ customerId?: string | undefined; /** * default_currency is the primary currency for this customer */ defaultCurrency?: string | undefined; /** * summaries contains the invoice summaries for each currency */ summaries?: Array | undefined; }; /** @internal */ export declare const CustomerMultiCurrencyInvoiceSummary$inboundSchema: z.ZodMiniType; export declare function customerMultiCurrencyInvoiceSummaryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customer-multi-currency-invoice-summary.d.ts.map