import { Config } from './config';
export declare class TokenProvider {
    private readonly config;
    constructor(config: Config);
    getAccessToken(password?: string, verbose?: boolean): Promise<string>;
    private handleTokenResponse;
}
