export interface SessionInfo { name: string; port: number; hostname: string; pid: number | null; status: 'running' | 'stopped'; dataDir: string; } export declare function listSessions(): Promise<{ main: SessionInfo | null; sessions: SessionInfo[]; }>; export declare function startSession(name: string): Promise; export declare function stopSession(name: string): Promise; export declare function restartSession(name: string): Promise; export declare function removeSession(name: string): Promise; export declare function stopAllSessions(): Promise; //# sourceMappingURL=session-manager.d.ts.map