/** * Zoe CLI — /settings Command Handler * * Read subcommands (list/get/reset/export/help) return their output for the * adapter to render. The interactive wizard and `set` use inquirer (own stdin) * and self-print — the TUI defers those. Subcommand router accepts direct ops. */ import type { CommandHandler } from './registry.js'; export declare function settingsHandler(): CommandHandler;