#!/usr/bin/env node
/**
 * AI-Debug v2 Server - Architectural Rebuild with Advanced Stability Monitoring
 *
 * This is the new server architecture that addresses all the fundamental
 * reliability issues through:
 * - Stateless design and connection-agnostic transport
 * - Advanced stability monitoring and circuit breakers
 * - HTTP-first architecture with real-time health tracking
 * - Automatic recovery and performance optimization
 */
declare class ProcessSupervisor {
    private httpTransport;
    private debugService;
    private sessionRegistry;
    private stabilityMonitor;
    private healthCheckInterval;
    private performanceInterval;
    private isShuttingDown;
    private startupAwareMemoryManager;
    private advancedMemoryManager;
    private startTime;
    constructor();
    private setupProcessHandlers;
    private setupStabilityEventHandlers;
    start(): Promise<void>;
    private startHealthMonitoring;
    private startPerformanceMonitoring;
    private performHealthCheck;
    private performPerformanceCheck;
    private gracefulShutdown;
    /**
     * Get comprehensive server status
     */
    getStatus(): any;
}
export { ProcessSupervisor };
//# sourceMappingURL=server-v2.d.ts.map