import { HexColor } from '@kepler.gl/types';
export declare type ColorMap = [string[] | string | number | null, HexColor][];
export declare type ColorLegends = {
    [key: string]: string;
};
export declare 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;
