import { ChartDataTypes, CommonCartesianChartProps, MixedChartProps } from '../mixed-chart/interfaces';
export interface LineChartProps<T extends ChartDataTypes> extends CommonCartesianChartProps<T> {
    series: ReadonlyArray<MixedChartProps.LineDataSeries<T> | MixedChartProps.ThresholdSeries>;
}
