/** * Copilot-specific spawn logic: CLI-path resolution, the isolated COPILOT_HOME / * workspace setup, and the Copilot process launch driven by dashboard settings * (model + optional BYOK / OpenRouter provider). */ import type { ThreadLifecycleService } from "./thread-lifecycle.service.js"; import { type SpawnResult } from "./spawn-common.js"; export declare const resolveCopilotPath: () => string | null; export declare function spawnCopilotProcess(copilotPath: string, name: string, threadId: number, threadLifecycle: ThreadLifecycleService, workingDirectory?: string, memorySourceThreadId?: number, threadType?: "worker" | "branch"): Promise; //# sourceMappingURL=copilot-spawn.service.d.ts.map