export type AttributeUpdateAttributeGroupDto = { attributeGroupId: string; nameByLang: AttributeUpdateAttributeGroupNameByLangDto[]; type: 'color' | 'text'; internalName: string; verticalId: string; linkedId?: string; }; type AttributeUpdateAttributeGroupNameByLangDto = { langId: string; name: string; }; export {};