/**
 * `agentled do` — Semantic Intent Router
 *
 * Describe what you want in natural language. Agentled finds the best matching
 * workflow, extracts inputs from your intent, and optionally executes it.
 *
 * Examples:
 *   agentled do "find the CEO's email for stripe.com"
 *   agentled do "research acme corp and score them" --execute
 *   agentled do "scrape https://example.com" --execute --no-confirm
 */
import { Command } from 'commander';
export declare function registerDoCommand(program: Command): void;
