import type { LaunchOpts } from "../agent/handoff.js"; export interface HandoffDeps { isInteractive?: () => boolean; prompt?: (choices: { value: string; label: string; }[]) => Promise; launch?: (agentId: string, prompt: string, cwd: string, opts?: LaunchOpts) => Promise; } export declare function runHandoffCommand(root: string, deps?: HandoffDeps): Promise;