/**
 * Workflow CLI Commands for NeuroLink
 *
 * Implements commands for workflow management and execution:
 * - neurolink workflow list     - List available predefined workflows
 * - neurolink workflow info <name> - Show details of a workflow
 * - neurolink workflow execute <name> <prompt> - Execute a workflow
 */
import type { CommandModule } from "yargs";
/**
 * Workflow CLI command factory
 */
export declare class WorkflowCommandFactory {
    static createWorkflowCommands(): CommandModule;
    /**
     * List all predefined workflows
     */
    private static executeList;
    /**
     * Show details of a specific workflow
     */
    private static executeInfo;
    /**
     * Execute a workflow
     */
    private static executeWorkflow;
}
