/** * Session Management Handlers * * Handles list_sessions, close_session, reset_session, and get_health tools. */ import type { HandlerContext } from "./types.js"; import type { ToolResult } from "../../types.js"; /** * Handle list_sessions tool */ export declare function handleListSessions(ctx: HandlerContext): Promise; }>>; type SessionOpResult = ToolResult<{ status: string; message: string; session_id: string; }>; /** * Handle close_session tool */ export declare function handleCloseSession(ctx: HandlerContext, args: { session_id: string; }): Promise; /** * Handle reset_session tool */ export declare function handleResetSession(ctx: HandlerContext, args: { session_id: string; }): Promise; /** * Handle get_health tool */ export declare function handleGetHealth(ctx: HandlerContext, args?: { deep_check?: boolean; notebook_id?: string; }): Promise>; export {};