import { ChartDataTypes, InternalChartSeries, MixedLineBarChartProps } from './interfaces'; import { ChartScale, NumericChartScale } from '../internal/components/cartesian-chart/scales'; 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(series: ReadonlyArray>, xScale: ChartScale, yScale: NumericChartScale): readonly ScaledPoint[]; //# sourceMappingURL=make-scaled-series.d.ts.map