import { ChartScale } from '../../internal/components/cartesian-chart/scales'; import { ChartModel } from '../model'; interface ThresholdSeriesProps { data: readonly ChartModel.PlotPoint[]; xScale: ChartScale; color: string; chartAreaClipPath: string; } declare const _default: typeof ThresholdSeries; export default _default; declare function ThresholdSeries({ data, xScale, color, chartAreaClipPath }: ThresholdSeriesProps): JSX.Element;