import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CardVolumeDistribution = { ecommercePercentage: number; cardPresentPercentage: number; mailOrPhonePercentage: number; debtRepaymentPercentage: number; }; /** @internal */ export declare const CardVolumeDistribution$inboundSchema: z.ZodType; /** @internal */ export type CardVolumeDistribution$Outbound = { ecommercePercentage: number; cardPresentPercentage: number; mailOrPhonePercentage: number; debtRepaymentPercentage: number; }; /** @internal */ export declare const CardVolumeDistribution$outboundSchema: z.ZodType; export declare function cardVolumeDistributionToJSON(cardVolumeDistribution: CardVolumeDistribution): string; export declare function cardVolumeDistributionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cardvolumedistribution.d.ts.map