import BaseEntity from './BaseEntity'; export type NewsCategory = 'announcement' | 'interview_and_review' | 'news'; export declare class IArticle extends BaseEntity { id: number; title: string; publish_date: string; category: NewsCategory; description: string; image: { full: string; full_webp: string; thumb?: string; thumb_webp?: string; }; excerpt: string; comments_count: string; constructor(partial: Partial); }