import { VisualizationSettings } from './VisualizationSettings'; import { Band } from '../Primitives/Band'; import { GaugeViewType } from '../Enums/GaugeViewType'; export declare abstract class GaugeVisualizationSettingsBase extends VisualizationSettings { constructor(); upperBand: TBand; middleBand: TBand; lowerBand: TBand; protected viewType: GaugeViewType; protected bands: TBand[]; protected abstract createBand(): TBand; }