import { OnInit, OnChanges } from '@angular/core';
import { ClusteredBarChartService } from '../clustered-bar-chart.service';
export declare class CbcChartBaseComponent implements OnInit, OnChanges {
    clusteredBarChartService: ClusteredBarChartService;
    xAxisTitle: string;
    yAxisTitle: string;
    showGridLines: boolean;
    yLevelPaths: string[];
    xAxis: any;
    yAxis: any;
    computeGrid(): void;
    constructor(clusteredBarChartService: ClusteredBarChartService);
    ngOnInit(): void;
    ngOnChanges(): void;
}
