import { CartLineItemDTO, CartWorkflowDTO } from "@medusajs/framework/types"; type ValidateSellerCartItemsStepInput = { cart: Omit & { items: (CartLineItemDTO & { offer?: { id: string; seller_id?: string; } | null; })[]; }; }; export declare const validateSellerCartItemsStep: import("@medusajs/framework/workflows-sdk").StepFunction; export {};