import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ForecastTrajectoryElement = { model: string; horizon: number; }; /** @internal */ export declare const ForecastTrajectoryElement$inboundSchema: z.ZodType; /** @internal */ export type ForecastTrajectoryElement$Outbound = { model: string; horizon: number; }; /** @internal */ export declare const ForecastTrajectoryElement$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 ForecastTrajectoryElement$ { /** @deprecated use `ForecastTrajectoryElement$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ForecastTrajectoryElement$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ForecastTrajectoryElement$Outbound` instead. */ type Outbound = ForecastTrajectoryElement$Outbound; } export declare function forecastTrajectoryElementToJSON(forecastTrajectoryElement: ForecastTrajectoryElement): string; export declare function forecastTrajectoryElementFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=forecasttrajectoryelement.d.ts.map