import type { AddPricesDTO } from "@medusajs/framework/types"; export type AddOfferPricesStepInput = AddPricesDTO[]; export type AddOfferPricesStepOutput = Array<{ priceSetId: string; prices: Array<{ id: string; }>; }>; export declare const addOfferPricesStepId = "add-offer-prices"; export declare const addOfferPricesStep: import("@medusajs/framework/workflows-sdk").StepFunction;