/** * Tools command - List, manage, and test AI SDK tools * * Subcommands: * list - List all available tools * info - Get detailed info about a tool * doctor - Check tool dependencies and env vars * example - Show usage example for a tool * add - Register a custom tool from npm/local * test - Test a tool (dry-run or live) */ export interface ToolsOptions { verbose?: boolean; output?: 'json' | 'text' | 'pretty'; json?: boolean; live?: boolean; tag?: string; } export declare function execute(args: string[], options: ToolsOptions): Promise;