import { BaseEntity } from 'typeorm';
import { ProductEntity } from '../../product/entities/product.entity';
export declare class ManufacturerEntity extends BaseEntity {
    id: number;
    name: string | null;
    description: string | null;
    metaKeywords: string | null;
    metaDescription: string | null;
    metaTitle: string | null;
    displayOrder: number | null;
    published: boolean | null;
    deleted: boolean | null;
    logo: string | null;
    showOnHomePage: boolean | null;
    createdAt: Date;
    updatedAt: Date;
    products: ProductEntity[];
}
