import { discoverProjectAgentRuntime } from "../../../src/agent/project/agent-runtime.js"; import type { WorkflowArgs } from "./handler.js"; export interface WorkflowOptions extends WorkflowArgs { projectDir?: string; } interface WorkflowCommandDependencies { discoverProjectAgentRuntime?: typeof discoverProjectAgentRuntime; } export interface WorkflowDiscoveryError { filePath: string; error: string; } export declare function formatWorkflowDiscoveryErrors(errors: WorkflowDiscoveryError[]): string[]; export declare function workflowCommand(options: WorkflowOptions): Promise; export declare function runWorkflowCommand(options: WorkflowOptions, dependencies?: WorkflowCommandDependencies): Promise; export {}; //# sourceMappingURL=command.d.ts.map