import type { OAuth2TokenResponse } from '../interfaces';
/** Get new access_token using refresh_token */
export declare function refreshOauth2Token(
/** Endpoint for authenticating via SSO */
oauthUrl: string, 
/** The SSO client ID */
clientId: string, 
/** The refresh token */
refreshToken: string): Promise<OAuth2TokenResponse>;
