import { HexColor } from 'reducers'; export type ColorMap = [string | number | null, HexColor][]; export type ColorLegends = { [key: string]: string; }; export type ColorRange = { name?: string; type?: string; category?: string; colors: HexColor[]; reversed?: boolean; colorMap?: ColorMap; colorLegends?: ColorLegends; }; export declare const COLOR_RANGES: ColorRange[]; export declare const DEFAULT_COLOR_RANGE: ColorRange; export declare const hexColor = "hexColor"; export declare const hexColorCustomPalette: { name: string; type: string; colors: any[]; category: string; hexColor: boolean; };