export interface SteamResult {
    name: string;
    recentScore?: number;
    allTimeScore?: number;
    url: string;
    releaseDate: string;
}
/**
 * @param country 2-character country code defined by "ISO 3166-1 alpha-2"
 */
export declare function getData(game: string, country: string): Promise<SteamResult | undefined>;
