import { BaseEntity } from 'typeorm';
import { ColorEntity } from '../../color/entities/color.entity';
import { ProductPictureMappingEntity } from '../../product/entities/product-picture-mapping.entity';
export declare class PictureEntity extends BaseEntity {
    id: number;
    filename: string | null;
    path: string | null;
    isMap: boolean | null;
    createdAt: Date;
    updatedAt: Date;
    colorId: number | null;
    productMappings: ProductPictureMappingEntity[];
    color: ColorEntity;
}
