import type { FeedItem } from './feed.types.js'; export interface IParser { parse(rawXml: string, source: string): Promise; supports(contentType: string): boolean; }