import { RssFeedEntry, type GameMakerArtifact } from './feeds.types.js'; /** * Get the runtime with the closest release date to the given IDE */ export declare function findPairedRuntime(runtimeFeed: GameMakerArtifact[], ide: GameMakerArtifact): { type: "ide" | "runtime"; version: string; channel: "lts" | "stable" | "beta" | "unstable"; feedUrl: string; publishedAt: string; notesUrl: string; summary?: string | undefined; link?: string | undefined; } | undefined; export declare function downloadRssFeed(url: string): Promise; //# sourceMappingURL=feeds.lib.d.ts.map