import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Address, Address$Outbound } from "./address.js"; import { Contact, Contact$Outbound } from "./contact.js"; export type ACHInstitution = { /** * Name of the financial institution. */ name: string; routingNumber: string; address?: Address | undefined; contact?: Contact | undefined; }; /** @internal */ export declare const ACHInstitution$inboundSchema: z.ZodType; /** @internal */ export type ACHInstitution$Outbound = { name: string; routingNumber: string; address?: Address$Outbound | undefined; contact?: Contact$Outbound | undefined; }; /** @internal */ export declare const ACHInstitution$outboundSchema: z.ZodType; export declare function achInstitutionToJSON(achInstitution: ACHInstitution): string; export declare function achInstitutionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=achinstitution.d.ts.map