import type { ScaleThreshold, ScaleQuantize } from 'd3-scale'; import type { RangeLegendColorMap } from '../types/internal.js'; /** * Function to map clusters or nodes to color tokens * @returns - LegendColorMap * @param scale - * @param min - * @param max - * @param hasCustomRanges - */ export declare const getRangeLegendColorMap: (scale: ScaleQuantize | ScaleThreshold, min: number, max: number, hasCustomRanges: boolean) => RangeLegendColorMap;