import { z } from "zod"; export declare const remitMessagesSchema: z.ZodObject<{ zone: z.ZodString; date: z.ZodOptional; }, z.core.$strip>; interface RemitMessage { id: string; plant: string; fuel: string | null; type: "planned" | "unplanned" | string; availableMW: number | null; unavailableMW: number | null; start: string; end: string; reason: string | null; } export declare function getRemitMessages(params: z.infer): Promise<{ zone: string; date: string; messageCount: number; messages: RemitMessage[]; }>; export {};