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 { ForecastTrajectoryElement, ForecastTrajectoryElement$Outbound } from "./forecasttrajectoryelement.js"; export type ForecastTrajectory = { trajectory: Array; startDate: RFCDate; endDate?: RFCDate | null | undefined; }; /** @internal */ export declare const ForecastTrajectory$inboundSchema: z.ZodType; /** @internal */ export type ForecastTrajectory$Outbound = { trajectory: Array; start_date: string; end_date?: string | null | undefined; }; /** @internal */ export declare const ForecastTrajectory$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 ForecastTrajectory$ { /** @deprecated use `ForecastTrajectory$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ForecastTrajectory$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ForecastTrajectory$Outbound` instead. */ type Outbound = ForecastTrajectory$Outbound; } export declare function forecastTrajectoryToJSON(forecastTrajectory: ForecastTrajectory): string; export declare function forecastTrajectoryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=forecasttrajectory.d.ts.map