/** * Configuration Manager * * Loads FABER CLI configuration from unified .fractary/config.yaml * and respects Claude Code settings */ import type { FaberConfig, AnthropicConfig, GitHubConfig } from '../types/config.js'; /** * Configuration Manager */ export declare class ConfigManager { private config; private constructor(); /** * Load configuration from unified .fractary/config.yaml * Returns a FaberConfig structure with all necessary settings */ static load(): Promise; /** * Find config file by searching upwards from current directory * Similar to how git finds .git directory */ private static findConfigFile; /** * Read Claude Code configuration for worktree location */ private static readClaudeCodeWorktreeLocation; /** * Get Claude Code configuration paths by platform */ private static getClaudeConfigPaths; /** * Get configuration value */ get(key: keyof FaberConfig): any; } //# sourceMappingURL=config.d.ts.map