import { BaseModel } from "./Base";
import { Vehicle } from "./Vehicle";
import { VehicleBodyType } from "./VehicleBodyType";
import { VehicleMake } from "./VehicleMake";
export declare class VehicleModel extends BaseModel {
    name: string;
    make: VehicleMake;
    year: number;
    slug: string;
    metaTitle?: string;
    metaDescription?: string;
    metaKeywords?: string;
    vehicles?: Vehicle[];
    image?: string;
    description?: string;
    bodyType: VehicleBodyType;
}
