/// import { Color, ValueFormatter } from "../../../lib"; interface BaseChartProps extends React.HTMLAttributes { data: any[]; categories: string[]; index: string; colors?: Color[]; valueFormatter?: ValueFormatter; startEndOnly?: boolean; showXAxis?: boolean; showYAxis?: boolean; yAxisWidth?: number; showAnimation?: boolean; showTooltip?: boolean; showGradient?: boolean; showLegend?: boolean; showGridLines?: boolean; autoMinValue?: boolean; minValue?: number; maxValue?: number; } export default BaseChartProps;