export type ProductUpdateAttributesDto = { productId: string; combinationId: string; attributes: ProductAttributeDto[]; verticalId: string; }; type ProductAttributeDto = { id: string; groupId: string; }; export {};