import { z } from "zod"; export declare const auctionSchema: z.ZodObject<{ date: z.ZodString; corridor: z.ZodString; }, z.core.$strip>; interface AuctionResult { corridor: string; date: string; allocated_capacity_mw: number | null; auction_price_eur_mw: number | null; offered_capacity_mw: number | null; requested_capacity_mw: number | null; } export declare function getAuctionResults(params: z.infer): Promise; export {};