import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ACHException = { code?: string | undefined; reason?: string | undefined; description?: string | undefined; }; /** @internal */ export declare const ACHException$inboundSchema: z.ZodType; /** @internal */ export type ACHException$Outbound = { code?: string | undefined; reason?: string | undefined; description?: string | undefined; }; /** @internal */ export declare const ACHException$outboundSchema: z.ZodType; export declare function achExceptionToJSON(achException: ACHException): string; export declare function achExceptionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=achexception.d.ts.map