import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RTPServices = { /** * Can the institution receive payments */ receivePayments: boolean; /** * Can the institution receive request for payment messages */ receiveRequestForPayment: boolean; }; /** @internal */ export declare const RTPServices$inboundSchema: z.ZodType; /** @internal */ export type RTPServices$Outbound = { receivePayments: boolean; receiveRequestForPayment: boolean; }; /** @internal */ export declare const RTPServices$outboundSchema: z.ZodType; export declare function rtpServicesToJSON(rtpServices: RTPServices): string; export declare function rtpServicesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=rtpservices.d.ts.map