import type { ScaleLinear, ScaleSymLog, ScaleTime } from 'd3-scale'; import { ThresholdIndicatorData } from '../../threshold-bar/indicators/ThresholdIndicator.js'; import type { SparklineThresholdProps } from '../types/sparkline-thresholds-props.js'; interface SparklineThresholdIndicator { id: string; indicatorData: ThresholdIndicatorData[]; color: string; strokeOnly: boolean; } export declare function mapToThresholdsIndicators(thresholdsProps: SparklineThresholdProps[], width: number, height: number, xScale: ScaleTime, yScale: ScaleLinear | ScaleSymLog): SparklineThresholdIndicator[]; export {};