import type { IWindow, NavigateParams, NavigateResponse } from 'oidc-client-ts'; import type { MobileWindowParams } from '../models/mobile-window-params.model'; /** * @internal */ export declare class MobileWindow implements IWindow { #private; redirectUrl: string; params: MobileWindowParams; constructor(redirectUrl: string, params: MobileWindowParams); navigate(params: NavigateParams): Promise; close(): Promise; }