import { SessionManager } from './sessionManager.js'; import { Session } from '../types/index.js'; declare class GlobalSessionOrchestrator { private static instance; private projectManagers; private globalManager; private constructor(); static getInstance(): GlobalSessionOrchestrator; getManagerForProject(projectPath?: string): SessionManager; getAllActiveSessions(): Session[]; destroyAllSessions(): void; destroyProjectSessions(projectPath: string): void; getProjectPaths(): string[]; getProjectSessions(projectPath: string): Session[]; } export declare const globalSessionOrchestrator: GlobalSessionOrchestrator; export {};