import type { ExecutorInput, ExecutorResult } from './types'; /** * Execute a task using the locally installed Claude Code CLI. * * Spawns `claude` with streaming JSON output so we can follow along in real-time. * MCP servers (handrails, playwright, etc.) are configured via .mcp.json in the project dir, * set up by the preflight step — no per-task injection needed. */ export declare function executeWithClaudeCode(input: ExecutorInput): Promise;