import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WireServices = { /** * The institution's capability to process standard Fedwire funds transfers. */ fundsTransferStatus: boolean; /** * The institution's capability for settlement-only transfers. */ fundsSettlementOnlyStatus: boolean; /** * The institution's capability to handle transfers of securities. */ bookEntrySecuritiesTransferStatus: boolean; }; /** @internal */ export declare const WireServices$inboundSchema: z.ZodType; /** @internal */ export type WireServices$Outbound = { fundsTransferStatus: boolean; fundsSettlementOnlyStatus: boolean; bookEntrySecuritiesTransferStatus: boolean; }; /** @internal */ export declare const WireServices$outboundSchema: z.ZodType; export declare function wireServicesToJSON(wireServices: WireServices): string; export declare function wireServicesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=wireservices.d.ts.map