import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FeatureCategory, FeatureCategory$Outbound } from "./featurecategory.js"; export type MarketDriver = { model: string; forecastDate: Date; targetDateContract: string; horizon: number; categories: Array; }; /** @internal */ export declare const MarketDriver$inboundSchema: z.ZodType; /** @internal */ export type MarketDriver$Outbound = { model: string; forecast_date: string; target_date_contract: string; horizon: number; categories: Array; }; /** @internal */ export declare const MarketDriver$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 MarketDriver$ { /** @deprecated use `MarketDriver$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MarketDriver$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `MarketDriver$Outbound` instead. */ type Outbound = MarketDriver$Outbound; } export declare function marketDriverToJSON(marketDriver: MarketDriver): string; export declare function marketDriverFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=marketdriver.d.ts.map