import { MCProfileResponse, NameChangeInfoResponse, ProfileResponseDecoded, UsernameToUUIDResponse } from "./MojangAPI.types"; export declare function usernameToUUID(username: string): Promise; export declare function getProfileByUUID(uuid: string): Promise; export declare function getBlockedServers(): Promise; export declare function nameChangeInfo(token: string): Promise; export declare function nameAvailability(name: string, token: string): Promise; export declare function changeSkin(url: string, variant: "classic" | "slim", token: string): Promise; export declare function resetSkin(uuid: string, token: string): Promise; export declare function checkOwnership(token: string, profileResp?: MCProfileResponse): Promise; export declare function getProfile(token: string): Promise;