import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Asset, Asset$Outbound } from "./asset.js"; import { LongTermForecast, LongTermForecast$Outbound } from "./longtermforecast.js"; import { MarketDriver, MarketDriver$Outbound } from "./marketdriver.js"; export type AssetLongTermForecastData = { asset: Asset; longTermForecast: Array; marketDrivers: Array | null; }; /** @internal */ export declare const AssetLongTermForecastData$inboundSchema: z.ZodType; /** @internal */ export type AssetLongTermForecastData$Outbound = { asset: Asset$Outbound; long_term_forecast: Array; market_drivers: Array | null; }; /** @internal */ export declare const AssetLongTermForecastData$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 AssetLongTermForecastData$ { /** @deprecated use `AssetLongTermForecastData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AssetLongTermForecastData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AssetLongTermForecastData$Outbound` instead. */ type Outbound = AssetLongTermForecastData$Outbound; } export declare function assetLongTermForecastDataToJSON(assetLongTermForecastData: AssetLongTermForecastData): string; export declare function assetLongTermForecastDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=assetlongtermforecastdata.d.ts.map