import { CodeMap } from "../types"; /** * Get the color from the codeMap for a given annotation value/code. * * @param {*} annotationCode annotation value/code * @param {*} codeMap object with annotation values as keys, where values are objects with (at least) a color field * @returns */ export declare const getColor: (annotationCode: string | number, codeMap?: CodeMap) => any; /** * Create a gradient for a given array of colors * * @param {*} colors ...you know, colors * @returns */ export declare const getColorGradient: (colors: string[]) => string;