import { platform } from '.'; export interface BasicInfo { battletag: string; borderURL: string; endorsementLevel: string; endorsements: { shotcaller: string; sportsmanship: string; teammate: string; }; iconURL: string; level: string; prestige: number; profileURL: string; rank: Rank; starsURL: string; } export interface Rank { damage?: RankRole; support?: RankRole; tank?: RankRole; } export interface RankRole { sr: string; roleIcon: string; tierIcon: string; } /** * Gets some basic stats about the profile * @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 getBasicInfo(battletag: string, platform: platform, html?: string): Promise;