import { Hero, platform } from '.'; export interface MostPlayed { competitive: Record; quickplay: Record; } export interface MostPlayedHero { img: string; time: string; } /** * Gets the playtime for every hero * @param battletag Use the `'NAME-DISCRIMINATOR'` format if on pc, otherwise just type the name (case sensitive) * @param platform Either `'pc'`, `'xbl'` or `'psn'` * @param html The HTML page, if you already have it */ export declare function getMostPlayed(battletag: string, platform: platform, html?: string): Promise;