import type { MandatoryProps } from './utils';
export type VehicleAutocompletedData = MandatoryProps & {
    vehicle_plate: string;
    has_submitted_info: boolean;
    quote_id?: string;
};
