/** * Handoff Service */ import { MCPToolResult } from "../types/mcp-types.js"; export declare class HandoffService { private projectRoot; constructor(projectRoot: string); /** * Update handoff.md with AI-processed result */ updateHandoffWithAIResult(workflowId: string, roleId: string, result: string): Promise; /** * Generate role prompt for AI processing */ generateRolePrompt(workflowId: string, roleId: string, workflowState: Record, role: Record): Promise; } //# sourceMappingURL=handoff-service.d.ts.map