import { BaseEntity } from 'typeorm';
import { ColorEntity } from 'src/modules/color/entities/color.entity';
import { PictureProductMappingEntity } from './picture-product-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;
    pictureProductMappings: PictureProductMappingEntity[];
    color: ColorEntity;
}
