/// export interface IDataPoint { value: number; label: React.ReactNode; estimate?: boolean; total?: boolean; description?: string; categoricalData?: ICategoryDataPoint[]; } export interface ICategoryDataPoint { name: string; label: string; icon: () => React.ReactNode; value: number; } //# sourceMappingURL=chart-datapoint-types.d.ts.map