import { BasicInfo, getBasicInfo } from './basicinfo'; import { heroIDMap } from './heroids'; import { getHeroStats, HeroStats } from './herostats'; import { getMostPlayed, MostPlayed } from './mostplayed'; export declare type platform = 'pc' | 'xbl' | 'psn'; export declare type Hero = Exclude; export interface AllStats extends BasicInfo { heroStats: HeroStats; mostPlayed: MostPlayed; } export declare function getAllStats(battletag: string, platform: platform): Promise; export { getBasicInfo, getHeroStats, getMostPlayed };