import type { CommandIO, CommandResult } from './io.js'; /** * `cadence handoff` as a service seam (phase 76) — thin MCP adapter over the * shared `runHandoff` core. Returns the `HandoffResult` as structured `data`; * a same-day collision (no `force`) maps to exit code 2. */ export interface HandoffServiceArgs { label?: string; force?: boolean; noStamp?: boolean; noGit?: boolean; } export declare function handoffService(repoRoot: string, args: HandoffServiceArgs, io: CommandIO): Promise; //# sourceMappingURL=handoff.d.ts.map