import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CardAcceptanceMethodsError, CardAcceptanceMethodsError$Outbound } from "./cardacceptancemethodserror.js"; import { EstimatedActivityError, EstimatedActivityError$Outbound } from "./estimatedactivityerror.js"; import { FulfillmentError, FulfillmentError$Outbound } from "./fulfillmenterror.js"; export type CollectFundsCardPaymentsError = { cardAcceptanceMethods?: CardAcceptanceMethodsError | undefined; currentlyAcceptsCards?: string | undefined; estimatedActivity?: EstimatedActivityError | undefined; fulfillment?: FulfillmentError | undefined; refundPolicy?: string | undefined; }; /** @internal */ export declare const CollectFundsCardPaymentsError$inboundSchema: z.ZodType; /** @internal */ export type CollectFundsCardPaymentsError$Outbound = { cardAcceptanceMethods?: CardAcceptanceMethodsError$Outbound | undefined; currentlyAcceptsCards?: string | undefined; estimatedActivity?: EstimatedActivityError$Outbound | undefined; fulfillment?: FulfillmentError$Outbound | undefined; refundPolicy?: string | undefined; }; /** @internal */ export declare const CollectFundsCardPaymentsError$outboundSchema: z.ZodType; export declare function collectFundsCardPaymentsErrorToJSON(collectFundsCardPaymentsError: CollectFundsCardPaymentsError): string; export declare function collectFundsCardPaymentsErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=collectfundscardpaymentserror.d.ts.map