export type FeedEntry = {
    id: string;
    title: string;
    date: Date | null;
    description: string;
    content: string;
    link: string;
    author: string;
};
export declare function loadFeeds(urls: string[]): Promise<FeedEntry[]>;
