import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CollectFundsAchError, CollectFundsAchError$Outbound } from "./collectfundsacherror.js"; import { CollectFundsCardPaymentsError, CollectFundsCardPaymentsError$Outbound } from "./collectfundscardpaymentserror.js"; export type CollectFundsError = { ach?: CollectFundsAchError | undefined; cardPayments?: CollectFundsCardPaymentsError | undefined; }; /** @internal */ export declare const CollectFundsError$inboundSchema: z.ZodType; /** @internal */ export type CollectFundsError$Outbound = { ach?: CollectFundsAchError$Outbound | undefined; cardPayments?: CollectFundsCardPaymentsError$Outbound | undefined; }; /** @internal */ export declare const CollectFundsError$outboundSchema: z.ZodType; export declare function collectFundsErrorToJSON(collectFundsError: CollectFundsError): string; export declare function collectFundsErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=collectfundserror.d.ts.map