interface Anime {
    link: string;
    name: string;
    ref: "crunchyroll";
}
export declare const getAnimeList: () => Promise<Anime[]>;
export {};
