/** * Interactive Configuration Command * Allows users to view and edit NCP settings interactively or via command-line */ export declare class ConfigurationManager { private readline; constructor(); /** * Display current configuration */ showConfiguration(): Promise; /** * Ask user if they want to edit */ private askToEdit; /** * Ask a yes/no question */ private askYesNo; /** * Interactive edit mode */ editConfiguration(): Promise; /** * Set a configuration value directly from command line * Usage: ncp config */ setConfigValue(key: string, value: string): Promise; /** * Main entry point - show and optionally edit */ run(): Promise; } //# sourceMappingURL=config-interactive.d.ts.map