import type { ThresholdMarker } from '../components/threshold-bar/types.js'; import type { FormatterWithPrecision } from '../types/formatter.js'; import type { AnyNumberScale, NumericScales } from '../types/scales.js'; import type { DateThresholdConfig, NumericalThresholdConfig, ThresholdPosition } from '../types/thresholds.js'; import type { WithId } from '../types/with-id.js'; export declare const transformThresholdsToMarkers: (thresholdBarPosition: ThresholdPosition, xScale: AnyNumberScale, yScale: NumericScales, formatter: FormatterWithPrecision) => (acc: ThresholdMarker[], threshold: WithId | WithId) => ThresholdMarker[];