/// import type { ScaleLinear } from 'd3-scale'; import type { LineChartDataSeriesWithDefaults } from '../../types'; export interface LineSeriesProps { data: LineChartDataSeriesWithDefaults; index: number; svgDimensions: { width: number; height: number; }; xScale: ScaleLinear; yScale: ScaleLinear; activeLineIndex?: number; animationDelay?: number; hiddenIndexes?: number[]; theme: string; type?: 'default' | 'spark'; shouldShowArea?: boolean; } export declare function LineSeries({ activeLineIndex, animationDelay, data, hiddenIndexes, index: lineSeriesIndex, svgDimensions, theme, type, xScale, yScale, shouldShowArea, }: LineSeriesProps): JSX.Element | null; //# sourceMappingURL=LineSeries.d.ts.map