/** * Port management utilities to avoid conflicts */ export declare class PortManager { private static usedPorts; /** * Get an available port starting from a base port */ static getAvailablePort(basePort?: number): Promise; /** * Check if a port is available */ private static isPortAvailable; /** * Reserve a port */ static reservePort(port: number): void; /** * Release a port */ static releasePort(port: number): void; /** * Get database port mapping */ static getDatabasePorts(): Record; } //# sourceMappingURL=port-manager.d.ts.map