import { Model } from './model'; import { Game } from './game'; import { Namespace } from './namespace'; export declare class Article extends Model { body: string; caption: string; game: Game; gameId: string; namespace: Namespace; namespaceId: string; publishedAt: Date; title: string; type: string; constructor(params?: Partial
); }