import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CardVolumeDistributionError = { ecommercePercentage?: string | undefined; cardPresentPercentage?: string | undefined; mailOrPhonePercentage?: string | undefined; debtRepaymentPercentage?: string | undefined; }; /** @internal */ export declare const CardVolumeDistributionError$inboundSchema: z.ZodType; /** @internal */ export type CardVolumeDistributionError$Outbound = { ecommercePercentage?: string | undefined; cardPresentPercentage?: string | undefined; mailOrPhonePercentage?: string | undefined; debtRepaymentPercentage?: string | undefined; }; /** @internal */ export declare const CardVolumeDistributionError$outboundSchema: z.ZodType; export declare function cardVolumeDistributionErrorToJSON(cardVolumeDistributionError: CardVolumeDistributionError): string; export declare function cardVolumeDistributionErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cardvolumedistributionerror.d.ts.map