/** * Process Manager - Handles lifecycle of system processes */ import { EventEmitter } from "./event-emitter.js"; import { ProcessInfo, SystemStats } from "./types.js"; export declare class ProcessManager extends EventEmitter { private processes; private orchestrator; private terminalManager; private memoryManager; private coordinationManager; private mcpServer; private config; private cleanLogger; constructor(); private initializeProcesses; initialize(configPath?: string): Promise; startProcess(processId: string): Promise; stopProcess(processId: string): Promise; restartProcess(processId: string): Promise; startAll(): Promise; stopAll(): Promise; getProcess(processId: string): ProcessInfo | undefined; getAllProcesses(): ProcessInfo[]; getSystemStats(): SystemStats; private updateProcessStatus; private getSystemUptime; private getTotalMemoryUsage; private getTotalCpuUsage; getProcessLogs(processId: string, _lines?: number): string[]; } //# sourceMappingURL=process-manager.d.ts.map