import { ChartScale, NumericChartScale } from '../internal/components/cartesian-chart/scales'; import { ChartDataTypes, InternalChartSeries, MixedLineBarChartProps } from './interfaces'; export interface ScaledPoint { x: number; y: number; color: string; datum?: MixedLineBarChartProps.Datum | undefined; series: MixedLineBarChartProps.ChartSeries; } /** Combine all line series into an array of scaled data points with the given scales. */ export default function makeScaledSeries(allSeries: ReadonlyArray>, xScale: ChartScale, yScale: NumericChartScale): readonly ScaledPoint[];