/**
 * Session Command Handler
 *
 * Starts an agentic session for a configured provider with full pre-flight:
 *   1. Version check — updates aiwg if stale
 *   2. Doctor — auto-repairs fixable issues
 *   3. Deployment check — redeploys framework files if missing/stale
 *   4. MCP inject (optional, `aiwg session mcp`)
 *   5. Launch binary (spawnable providers) or print start instructions (IDE providers)
 *
 * Usage:
 *   aiwg session                        # default provider, full pre-flight + launch
 *   aiwg session mcp                    # inject configured MCPs first, then launch
 *   aiwg session --provider codex       # explicit provider
 *   aiwg session mcp --provider cursor  # MCP inject for cursor + start instructions
 *   aiwg session --no-repair            # skip auto-repair (still check and report)
 *
 * @issue #884
 */
import { CommandHandler } from './types.js';
export declare const sessionHandler: CommandHandler;
//# sourceMappingURL=session.d.ts.map