import { AgentState, AgentName, CliMode } from '../types'; import { SuiteConfig } from '../types'; /** * Execute the full multi-agent workflow. */ export declare function executeWorkflow(projectPath: string, config: SuiteConfig, mode?: CliMode): Promise; /** * Execute a single agent step manually. */ export declare function executeSingleAgent(agentName: AgentName, state: AgentState): Promise; /** * Execute custom pipeline with selected agents. */ export declare function executeCustomPipeline(agents: AgentName[], projectPath: string, config: SuiteConfig): Promise; //# sourceMappingURL=workflow.d.ts.map