import type { ScaleLinear, ScaleLogarithmic, ScaleSymLog, ScaleTime } from 'd3-scale'; /** * Converts a value to its corresponding pixel position on the scale. Handles finite, infinite, and date values. * @param value - domain value * @param scale - axis scale * @param layout - chart orientation (optional) * @returns The pixel position corresponding to the value on the scale. */ export declare function getThresholdPixel(value: number | Date, scale: ScaleLinear | ScaleLogarithmic | ScaleSymLog | ScaleTime, layout?: 'vertical' | 'horizontal'): number;