/** * Claude Code CLI Executor * Integrates with Claude Code CLI for complex refactoring and code understanding */ import type { ExecutorOptions, ExecutorResult } from '../types.js'; import type { AgentExecutor } from './index.js'; export declare class ClaudeExecutor implements AgentExecutor { readonly type: "claude"; private process; private binaryPath; constructor(binaryPath?: string); /** * Check if Claude CLI is installed */ isAvailable(): Promise; /** * Execute a prompt using Claude CLI */ execute(prompt: string, options?: ExecutorOptions): Promise; /** * Build Claude CLI arguments */ private buildArgs; /** * Abort current execution */ abort(): void; } //# sourceMappingURL=claude.d.ts.map