import { MedusaContainer, ProductTypes } from "@medusajs/types"; import { EntityManager } from "typeorm"; import { ProductVariantPricesCreateReq } from "../../types/product-variant"; type ProductHandle = string; type VariantIndexAndPrices = { index: number; prices: ProductVariantPricesCreateReq[]; }; export declare function updateProductsVariantsPrices({ container, manager, data, }: { container: MedusaContainer; manager: EntityManager; data: { products: ProductTypes.ProductDTO[]; productsHandleVariantsIndexPricesMap: Map; }; }): Promise; export {};