import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SendFundsAch, SendFundsAch$Outbound } from "./sendfundsach.js"; import { SendFundsInstantBank, SendFundsInstantBank$Outbound } from "./sendfundsinstantbank.js"; import { SendFundsPushToCard, SendFundsPushToCard$Outbound } from "./sendfundspushtocard.js"; import { SendFundsRtp, SendFundsRtp$Outbound } from "./sendfundsrtp.js"; export type SendFunds = { ach?: SendFundsAch | undefined; pushToCard?: SendFundsPushToCard | undefined; rtp?: SendFundsRtp | undefined; instantBank?: SendFundsInstantBank | undefined; }; /** @internal */ export declare const SendFunds$inboundSchema: z.ZodType; /** @internal */ export type SendFunds$Outbound = { ach?: SendFundsAch$Outbound | undefined; pushToCard?: SendFundsPushToCard$Outbound | undefined; rtp?: SendFundsRtp$Outbound | undefined; instantBank?: SendFundsInstantBank$Outbound | undefined; }; /** @internal */ export declare const SendFunds$outboundSchema: z.ZodType; export declare function sendFundsToJSON(sendFunds: SendFunds): string; export declare function sendFundsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sendfunds.d.ts.map