import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SendFundsAchError, SendFundsAchError$Outbound } from "./sendfundsacherror.js"; import { SendFundsInstantBankError, SendFundsInstantBankError$Outbound } from "./sendfundsinstantbankerror.js"; import { SendFundsPushToCardError, SendFundsPushToCardError$Outbound } from "./sendfundspushtocarderror.js"; import { SendFundsRtpError, SendFundsRtpError$Outbound } from "./sendfundsrtperror.js"; export type SendFundsError = { ach?: SendFundsAchError | undefined; pushToCard?: SendFundsPushToCardError | undefined; rtp?: SendFundsRtpError | undefined; instantBank?: SendFundsInstantBankError | undefined; }; /** @internal */ export declare const SendFundsError$inboundSchema: z.ZodType; /** @internal */ export type SendFundsError$Outbound = { ach?: SendFundsAchError$Outbound | undefined; pushToCard?: SendFundsPushToCardError$Outbound | undefined; rtp?: SendFundsRtpError$Outbound | undefined; instantBank?: SendFundsInstantBankError$Outbound | undefined; }; /** @internal */ export declare const SendFundsError$outboundSchema: z.ZodType; export declare function sendFundsErrorToJSON(sendFundsError: SendFundsError): string; export declare function sendFundsErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sendfundserror.d.ts.map