import type { ColorPalette } from '../../core/types/color-palette.js'; import type { ColoredRange } from '../../core/types/colored-range.js'; import type { MinMax } from '../../core/types/min-max.js'; import { type ColoredInternalTreeMapData, type InternalTreeMapNode } from '../types/internal.js'; /** * Function to map the consumer dataset to the internal one that is sorted, colored. * Creates the mapping between internal data and the legend items/colors * @param tree - * @param unit - * @param colorPalette - * @returns - InternalTreemapData and Coloring map */ export declare function getColoredInternalRangeData(tree: InternalTreeMapNode, unit: string | undefined, colorPalette: ColorPalette | ColoredRange[], minMaxConfig: Partial): ColoredInternalTreeMapData;