import { ElementRef } from '@angular/core'; import * as i0 from "@angular/core"; export declare class ProgressBarComponent { /** Unique id to be assigned to progress bar to relate label with progress bar */ id: string; /** Maximum value progress can have */ max: number; /** Current value of progress bar */ value: number; /** Title of progress bar */ title: string; /** height of progress bar */ height: string; /** Percentage of progress bar */ percentage: number; /** Reference to filled progress bar */ filledProgressBar: ElementRef | null; /** Reference to unfilled progress bar */ progressBar: ElementRef | null; constructor(); ngOnInit(): void; ngAfterViewInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }