/** * News / RSS feed aggregation module. */ import type { NewsData } from './types.js'; export interface FeedSource { name: string; url: string; maxItems: number; } /** * Fetch and parse multiple RSS/Atom feeds in parallel. * Individual feed failures are captured per-feed rather than failing the whole call. */ export declare function fetchNews(feeds: FeedSource[]): Promise; //# sourceMappingURL=news.d.ts.map