import { Channel } from 'podverse-orm'; import type { ParseRSSFeedAndSaveToDatabaseOptions } from '@parser/lib/rss/parser'; export type OnDemandParserRemoteItemParams = { accountId: number | null; remoteParentPodcastIndexId: number; }; type RemoteItemsQueueMessage = { url: string; podcast_index_id: number; options: ParseRSSFeedAndSaveToDatabaseOptions; }; export declare const handleAllRemoteItemsFeedParsing: (channel: Channel, params: OnDemandParserRemoteItemParams) => Promise; export {}; //# sourceMappingURL=remoteItemParser.d.ts.map