type RssFeed = { feedTitle: string; items: RssEntry[]; }; type RssEntry = { title: string; description: string; link: string; pubDate: string; productArea: string; product: string; }; interface FlatRssEntry extends RssEntry { feedName: string; releaseNoteUrl: string; } declare const parseRssFeed: (rssString: string) => RssFeed; declare const fetchRssFeed: (url: string) => Promise; declare const RssFeeds: (props: RssFeedsProps) => import("@emotion/react/jsx-runtime").JSX.Element; type RssFeedsProps = { dataSource: string; }; export default RssFeeds; export { parseRssFeed, fetchRssFeed, FlatRssEntry };