import { ElementRef, OnInit, OnChanges, SimpleChanges } from '@angular/core';
import { DygraphOptions } from './dygraphOptions';
export declare class NgxDygraphsComponent implements OnInit, OnChanges {
    options: DygraphOptions;
    data: any;
    noDataLabel: string;
    chart: ElementRef;
    loadingInProgress: boolean;
    chartWidth: number;
    chartHeight: number;
    labels: string[];
    dygraph: any;
    ngOnInit(): void;
    /**
     * ngOnChanges
     * @method ngOnChanges
     * @return {void}
     */
    ngOnChanges(changes: SimpleChanges): void;
    changeVisibility(index: any, value: any): void;
    private watchRangeSelector(graph);
}
