export interface ParsedFeedItem { guid: string; title: string; link: string; summary: string; publishedDate?: string; } export interface ParsedFeed { feedUrl: string; feedTitle: string; items: ParsedFeedItem[]; } export declare function parseFeed(xml: string, feedUrl: string): ParsedFeed | null; //# sourceMappingURL=feed-parser.d.ts.map