import { Minehut } from '../Minehut'; import { CosmeticResponse, MinehutRank } from './CosmeticResponse'; /** * Represents a Minehut Player */ export declare class Player { client: Minehut; uuid: string; cosmetics: CosmeticResponse; rank: MinehutRank; prettyRank: string; constructor(client: Minehut, uuid: string, cosmetics: CosmeticResponse, rank?: MinehutRank); /** * Get the Minehut cosmetics of the player * @returns {Promise} * @throws {Error} If the request fails * @example const cosmetics = await player.getCosmetics(); */ getCosmetics(): Promise; }