import { OnInit, OnChanges } from '@angular/core';
import { GanttChartService } from '../gantt-chart.service';
export declare class GcChartBaseComponent implements OnInit, OnChanges {
    ganttChartService: GanttChartService;
    gridWidthX: number;
    gridWidthY: number;
    gridPrecisionX: number;
    gridID: string;
    gridPath: string;
    xAxis: any;
    yAxis: any;
    monthNames: string[];
    addDays(date: any, days: number): string;
    constructor(ganttChartService: GanttChartService);
    shortenDate(date: any): any;
    computeGrid(): void;
    ngOnInit(): void;
    ngOnChanges(): void;
}
