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 SendFundsAch = { estimatedActivity?: EstimatedActivity | undefined; }; /** @internal */ export declare const SendFundsAch$inboundSchema: z.ZodType; /** @internal */ export type SendFundsAch$Outbound = { estimatedActivity?: EstimatedActivity$Outbound | undefined; }; /** @internal */ export declare const SendFundsAch$outboundSchema: z.ZodType; export declare function sendFundsAchToJSON(sendFundsAch: SendFundsAch): string; export declare function sendFundsAchFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sendfundsach.d.ts.map