import { BaseApi } from '../base'; import { ValidWeapons, WeaponDTO } from '../@types/weapons'; export declare class Weapons extends BaseApi { getRaw(username: string): Promise; getWeapons(username: string): Promise; getWeapon(username: string, weapon: ValidWeapons): Promise; getTopWeapons(username: string): Promise; }