import { User } from '../'; import { ArticleCategory } from './'; export interface Article { id: number; title: string; description: string; content: string; datePosted: number; headerImage: string; thumbnailImage: string; author: User; category: ArticleCategory; } export interface CreateNewsArticleRequest { title: string; header: string; categoryID: number; shortStory: string; image: string; } export declare const exampleArticle: Article;