import { ColorScale, Range } from '../../utils/utils'; /** * Legend for a visualization. */ export declare class Legend { /** * Color scale of the legend. */ colorScale: ColorScale; /** * Range of the legend. */ range: Range; /** * Renders the legend. */ render(): any; }