import { MetacriticPlatform } from "./platform";
export interface MetacriticResult {
    name: string;
    url: string;
    /**
     * can assume that if metascore is present, the corresponding url will be present
     */
    metascore?: number;
    /**
     * can assume that if userscore is present, the corresponding url will be present
     */
    userscore?: number;
    releaseDate: string;
    metascoreUrl?: string;
    userscoreUrl?: string;
}
export declare function getData(game: string, platforms: MetacriticPlatform[]): Promise<MetacriticResult | undefined>;
