import { AccessTokenResponse } from '../../model/'; import { HttpClient } from '../HttpClient'; export declare class WebLoginClient { private readonly httpClient; private static readonly REGISTER_SESSION_ID_ENDPOINT; constructor(httpClient: HttpClient); /** * Sends an authentication request to the specified URL with the provided session ID. * @param sessionId - The session ID. * @returns A promise that resolves with the client response. */ registerSessionId(sessionId: string): Promise; /** * Get an access token using the provided session ID. * @param sessionId - The session ID. */ getToken(sessionId: string): Promise; }