import { ProductMakerBrandMappingEntity } from 'src/modules/product/entities/product-maker-brand-mapping.entity';
import { BaseEntity } from 'typeorm';
import { CarEntity } from './car.entity';
import { MakerEntity } from './maker.entity';
export declare class MakerBrandEntity extends BaseEntity {
    id: number;
    makerId: number | null;
    name: string | null;
    displayOrder: number | null;
    image: string | null;
    oilUseWithFilter: number | null;
    oilUseWithoutFilter: number | null;
    oilTechnical: string | null;
    insuranceCarGroup: string | null;
    insuranceVehicleCode: number | null;
    insuranceCarModels: string | null;
    deleted: boolean | null;
    createdAt: Date;
    updatedAt: Date;
    cars: CarEntity[];
    maker: MakerEntity;
    productMappings: ProductMakerBrandMappingEntity[];
}
