import { z } from "zod"; export declare const renewableForecastSchema: z.ZodObject<{ zone: z.ZodString; date: z.ZodOptional; }, z.core.$strip>; interface ForecastPoint { hour: number; mw: number; } interface RenewableForecastEntry { source: string; psr_code: string; forecast: ForecastPoint[]; peak_mw: number; total_mwh: number; } export declare function getRenewableForecast(params: z.infer): Promise<{ zone: string; date: string; forecasts: RenewableForecastEntry[]; total_peak_mw: number; }>; export {};