import { OnDemandParserEventType } from 'podverse-helpers'; import { FeedObject } from 'podverse-partytime'; export declare const getAndParseRSSFeed: (url: string) => Promise; export type ParseRSSOnDemandParserEvent = { accountId: number | null; remoteParentPodcastIndexId: number | null; type: OnDemandParserEventType | null; }; export type ParseRSSFeedAndSaveToDatabaseOptions = { forceParse: boolean; onDemandParserEvent: ParseRSSOnDemandParserEvent; }; export declare const parseRSSFeedAndSaveToDatabase: (url: string, podcast_index_id: number, options: ParseRSSFeedAndSaveToDatabaseOptions) => Promise<{ remoteItemsToParse: { url: string; podcast_index_id: number; options: ParseRSSFeedAndSaveToDatabaseOptions; }[]; }>; //# sourceMappingURL=parser.d.ts.map