import { VisualizationSettings } from './VisualizationSettings'; export declare abstract class MapVisualizationSettingsBase extends VisualizationSettings { constructor(); /** * Gets or sets if the map legend is displayed. */ showLegend: boolean; region?: string; /** * Gets or sets the color index as a base of the map's color scheme. A zero-based index is used to set colors instead of a color name. * For example, an index of 5 would be the 6th color in the color scheme regardless of the theme colors being used. */ colorIndex: number; }