/** * Zoe CLI — /models Command Handler * * In non-interactive mode, lists configured providers (returns output). * In interactive mode, launches the provider/model wizard (owns stdin) — the * TUI defers this command. */ import { Agent } from '../agent.js'; import type { CommandHandler } from './registry.js'; export declare function modelsHandler(agent: Agent, config: any, activeProviderType: string): CommandHandler;