import { type WorkflowRunContext } from './workflowExecution.js'; import type { ExecuteTaskOptions, WorkflowExecutionResult } from './types.js'; export type WorkflowExecutionRequest = ExecuteTaskOptions; export type WorkflowExecutionRunContext = WorkflowRunContext; export declare function runWorkflowExecution(request: WorkflowExecutionRequest, runContext?: WorkflowExecutionRunContext): Promise; export declare function runLoopAnalysisWorkflowExecution(request: WorkflowExecutionRequest): Promise; //# sourceMappingURL=workflowExecutionApi.d.ts.map