import { RootStore } from './RootStore'; import { RundeckClient } from '@rundeck/client'; export declare class NewsStore { readonly root: RootStore; readonly client: RundeckClient; articles: Array
; constructor(root: RootStore, client: RundeckClient); loaded: boolean; load: () => import("mobx/lib/internal").CancellablePromise; } export declare class Article { url: string; description: string; imageUrl: string; title: string; date: Date; static FromApi(post: any): Article; fromApi(post: any): this; }