import { AccountType } from "./types"; import { MCProfileResponse } from "./MojangAPI/MojangAPI.types"; export declare class Account { accessToken?: string; ownership: boolean; uuid?: string; username?: string; type: AccountType; profile?: MCProfileResponse; properties: any; alternativeValidation: boolean; constructor(token: string | undefined, type: AccountType); checkValidToken(): Promise; checkOwnership(): Promise; getProfile(): Promise; changeSkin(url: string, variant: "slim" | "classic"): Promise; checkNameAvailability(name: string): Promise; canChangeName(): Promise; }