import { UserEntity } from 'src/modules/user/entities/user.entity';
import { BaseEntity } from 'typeorm';
import { NewscommentEntity } from './news-comment.entity';
export declare class NewsEntity extends BaseEntity {
    id: number;
    image: string;
    newsTypeId: number | null;
    userId: string | null;
    title: string | null;
    description: string | null;
    metaKeywords: string | null;
    metaDescription: string | null;
    metaTitle: string | null;
    displayOrder: number | null;
    year: string | null;
    month: string | null;
    deleted: boolean | null;
    createdAt: Date;
    updatedAt: Date;
    commentCount: number;
    user: UserEntity;
    newscomments: NewscommentEntity[];
}
