import { OrchestrationUtils } from "@medusajs/utils"; import { WorkflowData, WorkflowDataProperties } from "../type"; /** * Workflow response class encapsulates the return value of a workflow */ export declare class WorkflowResponse { $result: WorkflowData | { [K in keyof TResult]: WorkflowData | WorkflowDataProperties | TResult[K]; }; options?: { hooks: THooks; } | undefined; __type: typeof OrchestrationUtils.SymbolMedusaWorkflowResponse; constructor($result: WorkflowData | { [K in keyof TResult]: WorkflowData | WorkflowDataProperties | TResult[K]; }, options?: { hooks: THooks; } | undefined); } //# sourceMappingURL=workflow-response.d.ts.map