import { WorkflowState } from '../state/workflowState'; export interface ExpertInteractionResult { response: string; updatedState: WorkflowState; document?: string; isComplete?: boolean; } /** * Handle expert interaction based on the current workflow state */ export declare function handleExpertInteraction(message: string, state: WorkflowState, useExtendedThinking?: boolean): Promise; /** * Prepare a comprehensive document for Task Master */ export declare function prepareDocumentForTaskMaster(state: WorkflowState): string; //# sourceMappingURL=expertInteractionHandler.d.ts.map