import { z } from "zod"; export declare const nordpoolSchema: z.ZodObject<{ areas: z.ZodString; date: z.ZodOptional; currency: z.ZodOptional>; }, z.core.$strip>; interface AreaPriceData { prices: { timestamp: string; price: number; }[]; stats: { min: number; max: number; mean: number; }; } interface NordpoolResult { date: string; currency: string; areas: Record; } export declare function getNordpoolPrices(params: z.infer): Promise; export {};