import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FedNowServices, FedNowServices$Outbound } from "./fednowservices.js"; export type FedNowInstitution = { /** * Name of the financial institution. */ name: string; routingNumber: string; services: FedNowServices; }; /** @internal */ export declare const FedNowInstitution$inboundSchema: z.ZodType; /** @internal */ export type FedNowInstitution$Outbound = { name: string; routingNumber: string; services: FedNowServices$Outbound; }; /** @internal */ export declare const FedNowInstitution$outboundSchema: z.ZodType; export declare function fedNowInstitutionToJSON(fedNowInstitution: FedNowInstitution): string; export declare function fedNowInstitutionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=fednowinstitution.d.ts.map