import type { OAuth2TokenResponse } from '../interfaces';
/** Requests the token based on the code that was received previously */
export declare function requestOauth2Token(
/** Endpoint for authenticating via SSO */
oauthUrl: string, 
/** The SSO client ID */
clientId: string, code: string, callbackUrl: URL): Promise<OAuth2TokenResponse>;
