import { BaseEntity } from 'typeorm';
import { DiscountEntity } from '../../discount/entities/discount.entity';
import { CategoryEntity } from './category.entity';
export declare class CategoryDiscountMappingEntity extends BaseEntity {
    createdAt: Date;
    updatedAt: Date;
    discountId: number;
    categoryId: number;
    discount: DiscountEntity;
    category: CategoryEntity;
}
