import { ChartScale, NumericChartScale } from '../internal/components/cartesian-chart/scales'; import { MixedLineBarChartProps } from './interfaces'; interface LineSeriesProps { axis: 'x' | 'y'; series: MixedLineBarChartProps.LineDataSeries | MixedLineBarChartProps.ThresholdSeries; color: string; chartAreaClipPath: string; xScale: ChartScale; yScale: NumericChartScale; } export default function LineSeries({ axis, series, color, xScale, yScale, chartAreaClipPath }: LineSeriesProps): JSX.Element | null; export {};