import { TransactionStepHandler, TransactionStepsDefinition } from "@medusajs/orchestration"; import { InjectedDependencies } from "./types"; export declare enum CreateProductsWorkflowActions { prepare = "prepare", createProducts = "createProducts", attachToSalesChannel = "attachToSalesChannel", attachShippingProfile = "attachShippingProfile", createPrices = "createPrices", createInventoryItems = "createInventoryItems", attachInventoryItems = "attachInventoryItems", result = "result" } export declare const workflowSteps: TransactionStepsDefinition; export declare function transactionHandler(dependencies: InjectedDependencies): TransactionStepHandler;