import { FrameworkConfig } from '../../types'; export declare class ConfigManager { private config?; constructor(); loadConfig(): Promise; private getDefaultConfig; getConfig(): FrameworkConfig & { testsDir?: string; }; updateConfig(updates: Partial & { testsDir?: string; }): void; saveConfig(config: FrameworkConfig & { testsDir?: string; }): Promise; detectProjectStructure(): Promise<{ testsDir: string; reportsDir: string; screenshotsDir: string; }>; init(): Promise; } //# sourceMappingURL=ConfigManager.d.ts.map