import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EstimatedActivity, EstimatedActivity$Outbound } from "./estimatedactivity.js"; export type SendFundsInstantBank = { estimatedActivity?: EstimatedActivity | undefined; }; /** @internal */ export declare const SendFundsInstantBank$inboundSchema: z.ZodType; /** @internal */ export type SendFundsInstantBank$Outbound = { estimatedActivity?: EstimatedActivity$Outbound | undefined; }; /** @internal */ export declare const SendFundsInstantBank$outboundSchema: z.ZodType; export declare function sendFundsInstantBankToJSON(sendFundsInstantBank: SendFundsInstantBank): string; export declare function sendFundsInstantBankFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sendfundsinstantbank.d.ts.map