import { AxiosInstance } from 'axios'; import { TokenManager } from './utils/http-token-manager'; import { GraphApiConfig, IPartnerCenterConfig } from './types'; export declare abstract class MicrosoftApiBase { protected readonly httpAgent: AxiosInstance; protected readonly tokenManager: TokenManager; constructor(config: IPartnerCenterConfig | GraphApiConfig, baseURL: string, scope: string); getRefreshToken(): Promise; }