import type { AgentRunRequest, AgentRunner } from '../types.js'; /** * `claude-code` provider: spawns the `claude` CLI in headless print mode and * connects it to DQL's stdio MCP server via `--mcp-config`. Requires the user * to have `claude` on PATH — no API key needed (Claude Code uses its own auth). */ export declare const claudeCodeRunner: AgentRunner; declare function buildPrompt(req: AgentRunRequest): string; export declare const __test__: { CLAUDE_CODE_ALLOWED_TOOLS: string; buildPrompt: typeof buildPrompt; }; export {}; //# sourceMappingURL=claude-code.d.ts.map