import { BaseEntity } from 'typeorm';
import { MakerBrandEntity } from '../../car/entities/maker-brand.entity';
import { ProductEntity } from './product.entity';
export declare class ProductMakerBrandMappingEntity extends BaseEntity {
    wagePrice: number | null;
    createdAt: Date;
    updatedAt: Date;
    productId: string;
    makerBrandId: number;
    product: ProductEntity;
    makerBrand: MakerBrandEntity;
}
