import { VisualizationSettings } from './VisualizationSettings'; import { IndicatorDifferenceMode } from '../Enums/IndicatorDifferenceMode'; export declare abstract class KpiVisualizationSettingsBase extends VisualizationSettings { /** * Gets or sets the mode in which the difference between values will be displayed. As a value, percentage, or both value and percentage. */ differenceMode: IndicatorDifferenceMode; /** * Gets or sets whether the color f the difference indicator will be Red or Green. If true, the color will be red. Otherwise, green. */ positiveIsRed: boolean; /** * Gets or sets whether the difference will include the values for the current day. */ includeToday: boolean; }