import { IConfiguration } from '../classes/config';
import { ITokenInformationResponse } from '../types/token.information.type';
export declare class Auth {
    private readonly requestHandler;
    constructor(config: IConfiguration);
    getTokenInfo(accessToken: string): Promise<ITokenInformationResponse>;
    getProfile(accessToken: string): Promise<any>;
}
