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; getProfile(accessToken: string): Promise; }