import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ForecastTick, ForecastTick$Outbound } from "./forecasttick.js"; export type Forecast = { model: string; forecastDate: Date; closePriceTrajectory: Array; }; /** @internal */ export declare const Forecast$inboundSchema: z.ZodType; /** @internal */ export type Forecast$Outbound = { model: string; forecast_date: string; close_price_trajectory: Array; }; /** @internal */ export declare const Forecast$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 Forecast$ { /** @deprecated use `Forecast$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Forecast$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Forecast$Outbound` instead. */ type Outbound = Forecast$Outbound; } export declare function forecastToJSON(forecast: Forecast): string; export declare function forecastFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=forecast.d.ts.map