import type { ScaleLinear, ScaleLogarithmic, ScaleSymLog, ScaleTime } from 'd3-scale'; import { ThresholdIndicatorData } from '../components/threshold-bar/indicators/ThresholdIndicator.js'; import { NumericalThresholdData, DateThresholdData } from '../types/thresholds.js'; export declare const transformThresholdIntoIndicator: (data: DateThresholdData, chartWidth: number, yScale: ScaleLinear | ScaleLogarithmic | ScaleSymLog, xScale: ScaleTime) => ThresholdIndicatorData[]; export declare const transformHistogramThresholdIntoIndicator: (data: NumericalThresholdData, chartWidth: number, yScale: ScaleLinear | ScaleLogarithmic | ScaleSymLog, xScale: ScaleLinear | ScaleSymLog) => ThresholdIndicatorData[];