export interface GogResult {
    name: string;
    score?: number;
    url: string;
}
export declare function getData(game: string): Promise<GogResult | undefined>;
