import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ForexData, ForexData$Outbound } from "./forexdata.js"; export type GetAllForexDataResponse = { success?: true | undefined; data: Array; }; /** @internal */ export declare const GetAllForexDataResponse$inboundSchema: z.ZodType; /** @internal */ export type GetAllForexDataResponse$Outbound = { success: true; data: Array; }; /** @internal */ export declare const GetAllForexDataResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetAllForexDataResponse$ { /** @deprecated use `GetAllForexDataResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetAllForexDataResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetAllForexDataResponse$Outbound` instead. */ type Outbound = GetAllForexDataResponse$Outbound; } export declare function getAllForexDataResponseToJSON(getAllForexDataResponse: GetAllForexDataResponse): string; export declare function getAllForexDataResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getallforexdataresponse.d.ts.map