import { z } from "zod"; export declare const intradayPricesSchema: z.ZodObject<{ zone: z.ZodString; date: z.ZodOptional; }, z.core.$strip>; interface IntradayPricePoint { hour: number; price_eur_mwh: number; } export declare function getIntradayPrices(params: z.infer): Promise<{ zone: string; date: string; currency: string; prices: IntradayPricePoint[]; stats: { min: number; max: number; mean: number; }; }>; export {};