import type { ScaleLinear, ScaleLogarithmic, ScaleSymLog } from 'd3-scale'; import type { ThresholdMarker } from '../components/threshold-bar/ThresholdBar.js'; import type { FormatterWithPrecision } from '../types/formatter.js'; import type { DateThresholdConfig, NumericalThresholdConfig, ThresholdPosition } from '../types/thresholds.js'; import type { WithId } from '../types/with-id.js'; export declare const transformThresholdsToMarkers: (thresholds: WithId[], position: ThresholdPosition, yScale: ScaleLinear | ScaleSymLog | ScaleLogarithmic, formatter: FormatterWithPrecision) => ThresholdMarker[];