import { VisualizationSettings } from './VisualizationSettings'; import { RdashChartType } from '../Enums/ChartType'; export declare abstract class ChartVisualizationSettingsBase extends VisualizationSettings { constructor(); /** * Gets or sets the chart type of the Visualization. This is only used to map to the RDASH JSON schema and should never be exposed on the public API * There is a separate property for the chart type on the public API located on the VisualizationBase class. */ protected chartType: RdashChartType; }