import { ConfigData, LoginMethod, User, UserSession } from "../types/session"; export declare class SessionManager { private store; private config; constructor(config: ConfigData); getSession(sessionId: string): Promise; createSession(loginMethod: LoginMethod, identifier: string, expire: number, user?: User): Promise; deleteSession(sessionId: string): Promise; getAllUserSession(userID: string): Promise; deleteAllUserSession(userID: string): Promise; }