import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { RFCDate } from "../../types/rfcdate.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ForecastTrajectory, ForecastTrajectory$Outbound } from "./forecasttrajectory.js"; export type AssetForecastModelData = { modelType: string; modelName: string; displayName: string; startDate: RFCDate; endDate: RFCDate; horizons: Array; indicators: Array; native: boolean; targetType?: string | null | undefined; rollingMeanWindows?: Array | null | undefined; features?: Array | null | undefined; strategy?: Array | null | undefined; }; /** @internal */ export declare const AssetForecastModelData$inboundSchema: z.ZodType; /** @internal */ export type AssetForecastModelData$Outbound = { model_type: string; model_name: string; display_name: string; start_date: string; end_date: string; horizons: Array; indicators: Array; native: boolean; target_type?: string | null | undefined; rolling_mean_windows?: Array | null | undefined; features?: Array | null | undefined; strategy?: Array | null | undefined; }; /** @internal */ export declare const AssetForecastModelData$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 AssetForecastModelData$ { /** @deprecated use `AssetForecastModelData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AssetForecastModelData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AssetForecastModelData$Outbound` instead. */ type Outbound = AssetForecastModelData$Outbound; } export declare function assetForecastModelDataToJSON(assetForecastModelData: AssetForecastModelData): string; export declare function assetForecastModelDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=assetforecastmodeldata.d.ts.map