import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Forecast, Forecast$Outbound } from "./forecast.js"; import { MarketDriver, MarketDriver$Outbound } from "./marketdriver.js"; import { MovingAverage, MovingAverage$Outbound } from "./movingaverage.js"; import { Tick, Tick$Outbound } from "./tick.js"; export type ContractWithForecasts = { assetSymbol: string; symbol: string; name: string; lastTick?: Tick | null | undefined; forecasts: Array; marketDrivers: Array | null; movingAverages: Array | null; }; /** @internal */ export declare const ContractWithForecasts$inboundSchema: z.ZodType; /** @internal */ export type ContractWithForecasts$Outbound = { asset_symbol: string; symbol: string; name: string; last_tick?: Tick$Outbound | null | undefined; forecasts: Array; market_drivers: Array | null; moving_averages: Array | null; }; /** @internal */ export declare const ContractWithForecasts$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 ContractWithForecasts$ { /** @deprecated use `ContractWithForecasts$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ContractWithForecasts$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ContractWithForecasts$Outbound` instead. */ type Outbound = ContractWithForecasts$Outbound; } export declare function contractWithForecastsToJSON(contractWithForecasts: ContractWithForecasts): string; export declare function contractWithForecastsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=contractwithforecasts.d.ts.map