import type { LastClient } from '../LastClient';
import type { GetFormattedResponse, LastfmResponses } from '../types/responses';
export declare class Auth {
    private client;
    constructor(client: LastClient);
    getToken(): Promise<string>;
    getSession(token: string): Promise<GetFormattedResponse<LastfmResponses['auth.getSession']>>;
}
