/** * Format an article for display */ export declare function formatArticle(article: { title: string; url: string; feedTitle?: string; author?: string; isRead: boolean; isStarred: boolean; published: number; content: string; }): string; /** * Format a list of articles as a summary */ export declare function formatArticleList(articles: { id: string; title: string; feedTitle?: string; isRead: boolean; isStarred: boolean; published: number; }[]): string; //# sourceMappingURL=formatters.d.ts.map