/** * Angular Component BMProgressBar * Polyfill/Stylable progress bar */ import { ChangeDetectorRef } from '@angular/core'; export declare class ProgressBarComponent { private _cdr; readonly min = 0; readonly role = "progressbar"; max: number; value: number; /** * Sets if the bar should display or not an animation after value changes */ staticBar: boolean; innerWidth: number; private _value; constructor(_cdr: ChangeDetectorRef); }