import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext } from '../http/http'; import { OAuth2AccessTokenResponse } from '../models/OAuth2AccessTokenResponse'; export declare class OAuth20AuthenticationApiRequestFactory extends BaseAPIRequestFactory { accessToken(grantType?: string, clientId?: string, clientSecret?: string, code?: string, scope?: string, refreshToken?: string, _options?: Configuration): Promise; } export declare class OAuth20AuthenticationApiResponseProcessor { accessToken(response: ResponseContext): Promise; }