/** * Build a workflow from a plan file using the /output-build-workflow slash command * @param planFilePath - Absolute path to the plan file * @param workflowDir - Absolute path to the workflow directory * @param workflowName - Name of the workflow * @param additionalInstructions - Optional additional instructions * @returns Implementation output from claude-code */ export declare function buildWorkflow(planFilePath: string, workflowDir: string, workflowName: string, additionalInstructions?: string): Promise; /** * Interactive loop for refining workflow implementation * Similar to the plan modification loop pattern * @param originalOutput - Initial implementation output from claude-code * @returns Final accepted output */ export declare function buildWorkflowInteractiveLoop(originalOutput: string): Promise;