import { ChartScale, NumericChartScale } from '../internal/components/cartesian-chart/scales'; import { ChartDataTypes, InternalChartSeries, MixedLineBarChartProps } from './interfaces'; interface DataSeriesProps { axis: 'x' | 'y'; plotHeight: number; plotWidth: number; highlightedSeries: MixedLineBarChartProps.ChartSeries | null; highlightedGroupIndex: number | null; stackedBars: boolean; isGroupNavigation: boolean; visibleSeries: ReadonlyArray>; xScale: ChartScale; yScale: NumericChartScale; isRtl?: boolean; } export default function DataSeries({ axis, plotHeight, plotWidth, highlightedGroupIndex, highlightedSeries, stackedBars, isGroupNavigation, visibleSeries, xScale, yScale, isRtl }: DataSeriesProps): JSX.Element; export {};