import { MeterChartModel } from '../model-meter';
import { Chart } from '../chart';
import { ChartConfig, MeterChartOptions } from '../interfaces/index';
export declare class MeterChart extends Chart {
    model: MeterChartModel;
    constructor(holder: Element, chartConfigs: ChartConfig<MeterChartOptions>);
    getComponents(): any[];
}
