import { z } from "zod"; export declare const ancillaryPricesSchema: z.ZodObject<{ zone: z.ZodString; service: z.ZodOptional>; date: z.ZodOptional; }, z.core.$strip>; interface AncillaryPricePoint { period: number; price_eur_mw: number; } export declare function getAncillaryPrices(params: z.infer): Promise<{ zone: string; service: string; date: string; currency: string; prices: AncillaryPricePoint[]; stats: { min: number; max: number; mean: number; }; }>; export {};