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