import type { CollaborationFlow, CollaborationFlowRecommendation, EventEntry, HandoffInput, Task } from "./types.js"; export declare function listCollaborationFlows(): CollaborationFlow[]; export declare function recommendCollaborationFlow(task: Task, events?: EventEntry[]): CollaborationFlowRecommendation | null; export declare function handoffFlowRequirements(input: HandoffInput): string[];