import { z } from "zod"; export declare const outagesSchema: z.ZodObject<{ zone: z.ZodString; type: z.ZodEnum<{ generation: "generation"; transmission: "transmission"; }>; date: z.ZodOptional; }, z.core.$strip>; interface OutageEntry { unit_name: string; fuel_type: string | null; available_mw: number | null; unavailable_mw: number | null; nominal_mw: number | null; start_date: string; end_date: string; reason: string | null; outage_type: string; } export declare function getOutages(params: z.infer): Promise<{ zone: string; type: string; outages: OutageEntry[]; total_unavailable_mw: number; count: number; }>; export {};