import type { MeterBarChartThresholdIndicatorPropsInternal, ThresholdIntervalRange } from '../types/meter-bar-chart-internal.js'; /** * Builds the colored interval ranges rendered below the meter bar. Each * threshold owns the range from its value up to the next threshold (the last * extends to `max`); the region below the first threshold uses `fallbackColor`. * @param thresholds - Configured thresholds (sorted or unsorted). * @param min - Scale minimum. * @param max - Scale maximum. * @param fallbackColor - Color for the uncovered region and for thresholds with no color. */ export declare const buildThresholdIntervals: (thresholds: MeterBarChartThresholdIndicatorPropsInternal[], min: number, max: number, fallbackColor: string) => ThresholdIntervalRange[]; //# sourceMappingURL=build-threshold-intervals.d.ts.map