import { z } from "zod"; export declare const flowsSchema: z.ZodObject<{ from_zone: z.ZodString; to_zone: z.ZodString; date: z.ZodOptional; }, z.core.$strip>; interface FlowPoint { hour: number; mw: number; } export declare function getCrossBorderFlows(params: z.infer): Promise<{ from_zone: string; to_zone: string; date: string; flows: FlowPoint[]; stats: { min: number; max: number; mean: number; net_mwh: number; }; }>; export {};