import type { ClaudeSession } from '../types/index.js'; import { Database } from './database.js'; export declare class SessionManager { private sessions; private database; constructor(database: Database); handleUserPromptSubmit(data: any): Promise; handleStop(data: any): Promise; getCurrentSession(): ClaudeSession | null; getActiveSession(projectPath?: string): Promise; }