import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ModelOutput = { commodity: string; date: Date; runDate: Date; horizon: number; contract: string; runDatePrice: number; realizedPrice: number; forecast: number; forecastError: number; forecastErrorPercent: number; }; /** @internal */ export declare const ModelOutput$inboundSchema: z.ZodType; /** @internal */ export type ModelOutput$Outbound = { commodity: string; date: string; run_date: string; horizon: number; contract: string; run_date_price: number; realized_price: number; forecast: number; forecast_error: number; forecast_error_percent: number; }; /** @internal */ export declare const ModelOutput$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 ModelOutput$ { /** @deprecated use `ModelOutput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ModelOutput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ModelOutput$Outbound` instead. */ type Outbound = ModelOutput$Outbound; } export declare function modelOutputToJSON(modelOutput: ModelOutput): string; export declare function modelOutputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=modeloutput.d.ts.map