import type { Line } from '../../core/types/line.js'; /** * Calculates the threshold line indicator position. * * @param thresholdValue - * @param min - * @param max - */ export declare const calculateThresholdLinePosition: (thresholdValue: number, min: number, max: number, arcOuterRadius: number, arcInnerRadius: number) => Line | undefined;