export type ProductUpdateFeaturesDto = { verticalId: string; productId: string; features: FeaturesDto[]; }; type FeaturesDto = { id: string; groupId: string; }; export {};