import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type FedNowServices = { /** * Indicates if the institution can receive instant payments. */ receivePayments: boolean; /** * Indicates if the institution can send instant payments. */ sendPayments: boolean; /** * Indicates if the institution can process request for payment messages. */ requestForPayment: boolean; }; /** @internal */ export declare const FedNowServices$inboundSchema: z.ZodType; /** @internal */ export type FedNowServices$Outbound = { receivePayments: boolean; sendPayments: boolean; requestForPayment: boolean; }; /** @internal */ export declare const FedNowServices$outboundSchema: z.ZodType; export declare function fedNowServicesToJSON(fedNowServices: FedNowServices): string; export declare function fedNowServicesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=fednowservices.d.ts.map