import { z } from "../../../../shared/zod";
/**
 * Schema for trip rate information
 *
 * Provides current toll rates for high occupancy lanes. Coverage Area: Statewide.
 */
export declare const tripRateSchema: z.ZodObject<{
    Message: z.ZodNullable<z.ZodString>;
    MessageUpdateTime: z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>;
    Toll: z.ZodNumber;
    TripName: z.ZodNullable<z.ZodString>;
}, z.core.$strip>;
export type TripRate = z.infer<typeof tripRateSchema>;
/**
 * Schema for toll trips container
 *
 * Provides current toll rates for high occupancy lanes. Coverage Area: Statewide.
 */
export declare const tollTripsRatesSchema: z.ZodObject<{
    LastUpdated: z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>;
    Trips: z.ZodNullable<z.ZodArray<z.ZodObject<{
        Message: z.ZodNullable<z.ZodString>;
        MessageUpdateTime: z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>;
        Toll: z.ZodNumber;
        TripName: z.ZodNullable<z.ZodString>;
    }, z.core.$strip>>>;
    Version: z.ZodInt;
}, z.core.$strip>;
export type TollTripsRates = z.infer<typeof tollTripsRatesSchema>;
//# sourceMappingURL=tollTripRates.output.d.ts.map