export interface ReviewHelperConfig { models: { explorer: string; }; review_order: { type_priority: string[]; instructions?: string; }; impact_analysis: { max_depth: number; max_results_per_level: number; exclude_patterns: string[]; }; } /** * Load and merge config from all sources */ export declare function loadConfig(projectDir?: string): Promise; /** * Save config to the global config file */ export declare function saveGlobalConfig(config: Partial): Promise; /** * Get the explorer model from config */ export declare function getExplorerModel(projectDir?: string): Promise; //# sourceMappingURL=config.d.ts.map