import { type Observable } from "rxjs";
import type { AuthOptions } from "../auth-options";
import type { OpenIdConfiguration } from "../config/openid-configuration";
import type { LoginResponse } from "./login-response";
import type { PopupOptions } from "./popup/popup-options";
export declare class LoginService {
    private readonly parLoginService;
    private readonly popUpLoginService;
    private readonly standardLoginService;
    private readonly storagePersistenceService;
    private readonly popupService;
    login(configuration: OpenIdConfiguration | null, authOptions?: AuthOptions): Observable<void>;
    loginWithPopUp(configuration: OpenIdConfiguration | null, allConfigs: OpenIdConfiguration[], authOptions?: AuthOptions, popupOptions?: PopupOptions): Observable<LoginResponse>;
}
//# sourceMappingURL=login.service.d.ts.map