import { z } from 'zod';

/**
 * Roadway location information including route, milepost, coordinates, and direction.
 */
declare const roadwayLocationSchema: z.ZodObject<{
    Description: z.ZodNullable<z.ZodString>;
    Direction: z.ZodNullable<z.ZodString>;
    Latitude: z.ZodNumber;
    Longitude: z.ZodNumber;
    MilePost: z.ZodNumber;
    RoadName: z.ZodNullable<z.ZodString>;
}, z.core.$strip>;
type RoadwayLocation = z.infer<typeof roadwayLocationSchema>;

export type { RoadwayLocation as R };
