import { ErrorCode } from './error-codes'; /** * Enhanced error manager with context-aware messages */ export declare class ErrorManager { /** * Show error code and documentation URL */ static showErrorCode(errorCode: ErrorCode): void; /** * Show Claude CLI not found error */ static showClaudeNotFound(): Promise; /** * Show settings file not found error */ static showSettingsNotFound(settingsPath: string): Promise; /** * Show invalid configuration error */ static showInvalidConfig(configPath: string, errorDetail: string): Promise; /** * Show profile not found error */ static showProfileNotFound(profileName: string, availableProfiles: string[], suggestions?: string[]): Promise; /** * Show permission denied error */ static showPermissionDenied(filePath: string): Promise; } //# sourceMappingURL=error-manager.d.ts.map