import { ChartDataTypes, CommonCartesianChartProps, MixedChartProps } from '../mixed-chart/interfaces';
export interface BarChartProps<T extends ChartDataTypes> extends CommonCartesianChartProps<T> {
    series: ReadonlyArray<MixedChartProps.BarDataSeries<T> | MixedChartProps.ThresholdSeries>;
    stackedBars?: boolean;
    horizontalBars?: boolean;
}
