interface LaunchOptions { background?: boolean; verbose?: boolean; autoSpinAgents?: boolean; maxRetries?: number; contextFile?: string; } export declare class ClaudeLauncher { private statusIndicator; private errorRecovery; private claudeProcess?; private projectPath; constructor(projectPath?: string); launchWithContext(options?: LaunchOptions): Promise; private validateEnvironment; private checkClaudeInstallation; private generateClaudeContext; private buildContextDocument; private loadAgentConfigurations; private startClaudeSession; private initializeAgents; terminate(): Promise; private createSeamlessLaunchScript; private displayLaunchContext; private extractContextSummary; private waitForEnter; private sleep; static quickLaunch(projectPath?: string): Promise; } export {};