import { z } from 'zod';
export declare const RideOverridesSchema: z.ZodObject<{
    trip_id: z.ZodDefault<z.ZodNullable<z.ZodString>>;
}, "strip", z.ZodTypeAny, {
    trip_id: string | null;
}, {
    trip_id?: string | null | undefined;
}>;
export type RideOverrides = z.infer<typeof RideOverridesSchema>;
