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"; export type LongTermForecast = { date: RFCDate; contract: string; priceIncrease: boolean; }; /** @internal */ export declare const LongTermForecast$inboundSchema: z.ZodType; /** @internal */ export type LongTermForecast$Outbound = { date: string; contract: string; price_increase: boolean; }; /** @internal */ export declare const LongTermForecast$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 LongTermForecast$ { /** @deprecated use `LongTermForecast$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LongTermForecast$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LongTermForecast$Outbound` instead. */ type Outbound = LongTermForecast$Outbound; } export declare function longTermForecastToJSON(longTermForecast: LongTermForecast): string; export declare function longTermForecastFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=longtermforecast.d.ts.map