import type { DriverAvailability, SpawnCommand, SpawnContext, SpawnDriver } from "./spawn-driver.js"; export interface ClaudeCodeSpawnDriverOptions { binary?: string; isOnPath?: (binary: string) => boolean; } export declare class ClaudeCodeSpawnDriver implements SpawnDriver { readonly runtime_kind = "claude-code"; private readonly binary; private readonly isOnPath; constructor(opts?: ClaudeCodeSpawnDriverOptions); buildSpawnCommand(ctx: SpawnContext): SpawnCommand; isAvailable(): Promise; } //# sourceMappingURL=claude-code-spawn-driver.d.ts.map