/** * Config command - Manage FABER configuration * * Provides commands for reading, writing, and migrating FABER configuration. * Uses the SDK's ConfigInitializer, ConfigValidator, and ConfigUpdater for * all operations to ensure consistency. * * Subcommands: * config init - Initialize FABER configuration (used by config-init command) * config update - Update configuration fields with backup (used by config-updater agent) * config validate - Validate configuration (used by config-validator agent) * config get - Get configuration values * config set - Set a single configuration value * config migrate - Migrate legacy configuration * config path - Show configuration file path * config exists - Check if configuration file exists */ import { Command } from 'commander'; export declare function createConfigCommand(): Command; //# sourceMappingURL=config.d.ts.map