export interface IAuthClientOptions { debug: boolean; url?: string; logger?: any; } export declare class AuthClient { axios: any; client_id: string; client_secret: string; constructor(client_id: string, client_secret: string, options: IAuthClientOptions); getToken(scope: string): Promise; }