import { AuthManagerInterface, BeginAuthSessionParams } from "../../private/model/AuthManagerInterface"; declare class AuthManagerImpl implements AuthManagerInterface { beginAuthSession(_params: BeginAuthSessionParams): Promise; endAuthSession(): Promise; isAuthSessionActive(): boolean; isAuthSessionReady(): boolean; } /** * Alternative way of implementing a static class (i.e. all methods static). We do this so we can use a interface on the class (interfaces can't define static methods). */ export declare const AuthManager: AuthManagerImpl; export {};