import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ForexTick, ForexTick$Outbound } from "./forextick.js"; export type ForexData = { code: string; name: string; marketDate: Date; prices: Array; }; /** @internal */ export declare const ForexData$inboundSchema: z.ZodType; /** @internal */ export type ForexData$Outbound = { code: string; name: string; market_date: string; prices: Array; }; /** @internal */ export declare const ForexData$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 ForexData$ { /** @deprecated use `ForexData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ForexData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ForexData$Outbound` instead. */ type Outbound = ForexData$Outbound; } export declare function forexDataToJSON(forexData: ForexData): string; export declare function forexDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=forexdata.d.ts.map