export interface SponsorEntry {
    readonly sponsor: {
        readonly login: string;
        readonly name?: string | null;
        readonly avatarUrl?: string | null;
        readonly websiteUrl?: string | null;
        readonly linkUrl?: string | null;
        readonly type?: string;
    };
    readonly isOneTime: boolean;
    readonly monthlyDollars?: number;
    readonly tierName?: string;
}
export declare const SPONSORS_JSON_URL = "https://sponsors.amanv.dev/sponsors.json";
export declare function fetchSponsors(url?: string): Promise<SponsorEntry[]>;
export declare function displaySponsors(sponsors: SponsorEntry[]): void;
