/** * Zoe CLI — Setup Wizard * * Interactive setup wizard for configuring API keys and providers. * Extracted from index.ts for separation of concerns. */ import { ProviderType } from '../../providers/types.js'; import { Agent } from './agent.js'; import { type AppConfig } from './config-loader.js'; /** * Run the interactive setup wizard. * @param options.project - If true, save to project-level config instead of global. */ export declare function runSetup(options?: any): Promise; /** * Handle the /models interactive command. * Allows switching, editing, adding, and removing providers at runtime. */ export declare function handleModelsCommand(agent: Agent, config: AppConfig, activeProvider: ProviderType): Promise;