import { z } from "../../../../shared/zod";
/**
 * WeatherStationData schema
 *
 * Provides current information from weather stations. Coverage Area: Statewide.
 */
export declare const weatherStationSchema: z.ZodObject<{
    Latitude: z.ZodNumber;
    Longitude: z.ZodNumber;
    StationCode: z.ZodInt;
    StationName: z.ZodNullable<z.ZodString>;
}, z.core.$strip>;
export type WeatherStation = z.infer<typeof weatherStationSchema>;
export type WeatherStationData = WeatherStation;
//# sourceMappingURL=weatherStations.output.d.ts.map