import { IAgentScopeRuntimeWebUISessionAPI } from "../../.."; import { IAgentScopeRuntimeWebUISession } from '../../core/types/ISessions'; declare class SessionApi implements IAgentScopeRuntimeWebUISessionAPI { private lsKey; private sessionList; constructor(); getSessionList(): Promise; getSession(sessionId: any): Promise; updateSession(session: any): Promise; createSession(session: any): Promise; removeSession(session: any): Promise; } declare const _default: SessionApi; export default _default;