import { BaseEntity } from 'typeorm';
import { ProductEntity } from '../../product/entities/product.entity';
import { CategoryDiscountMappingEntity } from './category-discount-mapping.entity';
export declare class CategoryEntity extends BaseEntity {
    id: number;
    categoryId: number | null;
    name: string | null;
    serviceName: string | null;
    description: string | null;
    metaKeywords: string | null;
    metaDescription: string | null;
    metaTitle: string | null;
    image: string;
    showOnHomePage: boolean | null;
    displayOrder: number | null;
    published: boolean | null;
    deleted: boolean | null;
    isService: boolean | null;
    createdAt: Date;
    updatedAt: Date;
    categoryDiscountMappings: CategoryDiscountMappingEntity[];
    products: ProductEntity[];
}
