export type ProductUpdatePriceBaseDto = { verticalId: string; productId: string; priceBaseShops: PriceBaseShopDto[]; }; type PriceBaseShopDto = { shopId: string; price: number; }; export {};