/** * RSS / Atom feed parser. * Normalises both RSS 2.0 and Atom feeds into a common item format. */ export interface FeedItem { title: string; link: string; date: string; summary: string; } /** * Parse an RSS 2.0 or Atom XML string and return normalised feed items. */ export declare function parseRSS(xml: string): FeedItem[]; //# sourceMappingURL=rss.d.ts.map