export type IndicatorWidgetDataItem = { content: { current: { value: string | number; } & Record; }; color?: string; size?: 's' | 'm' | 'l' | 'xl'; title?: string; nowrap?: boolean; }; export type IndicatorWidgetData = { data?: IndicatorWidgetDataItem[]; defaultColor?: string; };