import type { IBadgeGroupIcon } from '../../badgeGroup/models/IBadgeGroupIcon' import type { IBadgeGroupItem } from '../../badgeGroup/models/IBadgeGroupItem' export interface IDetailedList { title: string type: TType value: IBadgeGroupItem[] | string iconInGroup?: IBadgeGroupIcon } export interface IDetailedExtendedList extends IDetailedList { isTooltipRendered?: boolean } export type TType = 'badge-group' | 'text' | 'description'