import type { WorkflowConfig } from '../../../core/models/index.js'; import type { ExecuteTaskOptions, WorkflowExecutionOptions, WorkflowExecutionResult } from './types.js'; type WorkflowExecutor = (workflowConfig: WorkflowConfig, task: string, cwd: string, options: WorkflowExecutionOptions) => Promise; export declare function executeTaskWorkflow(options: ExecuteTaskOptions, workflowExecutor: WorkflowExecutor): Promise; export {}; //# sourceMappingURL=taskWorkflowExecution.d.ts.map