import { BaseEntity } from 'typeorm';
import { PictureProductMappingEntity } from './picture-product-mapping.entity';
import { PictureEntity } from './picture.entity';
import { ProductEntity } from './product.entity';
export declare class ColorEntity extends BaseEntity {
    id: number;
    productId: string | null;
    productName: string | null;
    name: string | null;
    code: string | null;
    imagePath: string | null;
    price: number | null;
    displayOrder: number | null;
    createdAt: Date;
    updatedAt: Date;
    product: ProductEntity;
    pictureProductMappings: PictureProductMappingEntity[];
    pictures: PictureEntity[];
}
