/** * Configuration Manager * Zero-config system with smart defaults and optional config file */ import type { ProjectConfig } from '../types.js'; export declare class ConfigManager { private config; private configPath; private projectRoot; constructor(projectRoot?: string); /** * Get configuration with smart defaults * No config file required - uses auto-detection */ getConfig(): Promise; /** * Generate config file (optional - only if user wants customization) */ generateConfigFile(config?: Partial): Promise; /** * Check if config file exists */ hasConfigFile(): boolean; /** * Get config file path */ getConfigPath(): string; } //# sourceMappingURL=config-manager.d.ts.map