import { Model } from "sequelize-typescript"; import { CarBrand } from "./car_brand.model"; export declare class Car extends Model { name: string; carBrandId: number; carBrand: CarBrand; }