import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CardAcceptanceMethodsError = { inPersonPercentage?: string | undefined; mailOrPhonePercentage?: string | undefined; onlinePercentage?: string | undefined; }; /** @internal */ export declare const CardAcceptanceMethodsError$inboundSchema: z.ZodType; /** @internal */ export type CardAcceptanceMethodsError$Outbound = { inPersonPercentage?: string | undefined; mailOrPhonePercentage?: string | undefined; onlinePercentage?: string | undefined; }; /** @internal */ export declare const CardAcceptanceMethodsError$outboundSchema: z.ZodType; export declare function cardAcceptanceMethodsErrorToJSON(cardAcceptanceMethodsError: CardAcceptanceMethodsError): string; export declare function cardAcceptanceMethodsErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cardacceptancemethodserror.d.ts.map