import { ElementRef, OnInit } from '@angular/core'; import { AbstractNgModel } from '../../models/abstract.ngmodel'; import { SharedService } from '../../models/sharedService'; import { Http } from '@angular/http'; import { TranslateService } from '@ngx-translate/core'; export declare class ProgressbarComponent extends AbstractNgModel implements OnInit { _http: Http; private _el; private _translateService; constructor(_sharedService: SharedService, _http: Http, _el: ElementRef, _translateService: TranslateService); min: number; max: number; value: any; statusDisplay: any; ngOnInit(): void; ngAfterViewInit(): void; }