export type Widget = { WidgetType: 'Bar' | 'Column' | 'Pie' | 'Mixed' | 'Timeline' | 'Candle' | 'Area' | null; WidgetName: string | null; CalcType: "Sum" | "Min" | "Max" | "Count" | "Average" | null; ValueFieldName: string | null; ValueFieldId: string | null; EntityName: string | null; EntityId: string | null; Group: string | null; }