/** * Claude-specific spawn logic: CLI-path resolution and the Claude Code process * launch (per-thread config dir, OAuth-token handling, git-bash discovery). */ import type { ThreadLifecycleService } from "./thread-lifecycle.service.js"; import { type SpawnResult } from "./spawn-common.js"; export declare const resolveClaudePath: () => string | null; export declare function spawnAgentProcess(claudePath: string, name: string, threadId: number, threadLifecycle: ThreadLifecycleService, workingDirectory?: string, memorySourceThreadId?: number, threadType?: "worker" | "branch", modelOverride?: string): Promise; //# sourceMappingURL=claude-spawn.service.d.ts.map