import { Nationality } from '../minimum/Nationality.js';
import { PoliceDefect } from '../trailer/PoliceDefect.js';
import { CommonVehicleWeights } from './CommonVehicleWeights.js';

declare abstract class CommonVehicle extends CommonVehicleWeights {
    private static readonly REGEX_MODEL_MAKE;
    vehicleAxles: number;
    vehicleColour?: string | null;
    vehicleModel?: string | null;
    vehicleMake: string;
    nationality: Nationality;
    policeDefects?: PoliceDefect[];
    nationalitySummary: string;
}

export { CommonVehicle };
