import { R6TabAPIConfig, NameResponse, IdResponse, LeadersResponse, ServicePlatform, GamePlatform, Region } from "./types"; export declare class R6TabAPI { private _axios; config: R6TabAPIConfig; constructor(config?: R6TabAPIConfig); static getProfileUrl(p_id: string): string; static getAvatarUrl(p_user: string, small?: boolean): string; static isPlayerId(p_id: string): boolean; statsByName(username: string, platform: ServicePlatform): Promise; statsById(p_id: string): Promise; statsUpdate(p_id: string): Promise; statsLeaders(platform: GamePlatform, region: Region): Promise; private call; private getBaseConfig; }