import * as _angular_core from '@angular/core'; import { ElementRef, Renderer2 } from '@angular/core'; type ProgressbarType = 'success' | 'info' | 'warning' | 'danger'; interface BarValue { type: ProgressbarType; label: string; value: number; max: number; } declare class BarComponent { private el; private renderer; /** maximum total value of progress element */ max: _angular_core.InputSignal; /** current value of progress bar */ value: _angular_core.InputSignal; /** if `true` changing value of progress bar will be animated */ animate: _angular_core.InputSignal; /** If `true`, striped classes are applied */ striped: _angular_core.InputSignal; /** provide one of the four supported contextual classes: `success`, `info`, `warning`, `danger` */ type: _angular_core.InputSignal; percent: number; private _prevType?; constructor(el: ElementRef, renderer: Renderer2); private applyTypeClasses; static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵcmp: _angular_core.ɵɵComponentDeclaration; } declare class ProgressbarConfig { /** if `true` changing value of progress bar will be animated */ animate: boolean; /** If `true`, striped classes are applied */ striped: boolean; /** maximum total value of progress element */ max: number; static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵprov: _angular_core.ɵɵInjectableDeclaration; } declare class ProgressbarComponent { private _config; /** maximum total value of progress element */ max: _angular_core.InputSignal; /** if `true` changing value of progress bar will be animated */ animate: _angular_core.InputSignal; /** If `true`, striped classes are applied */ striped: _angular_core.InputSignal; /** provide one of the four supported contextual classes: `success`, `info`, `warning`, `danger` */ type: _angular_core.InputSignal; /** current value of progress bar. Could be a number or array of objects * like {"value":15,"type":"info","label":"15 %"} */ value: _angular_core.InputSignal; isStacked: _angular_core.Signal; _value: _angular_core.Signal; _values: _angular_core.Signal; constructor(_config: ProgressbarConfig); static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵcmp: _angular_core.ɵɵComponentDeclaration; } declare class ProgressbarModule { static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵmod: _angular_core.ɵɵNgModuleDeclaration; static ɵinj: _angular_core.ɵɵInjectorDeclaration; } export { BarComponent, ProgressbarComponent, ProgressbarConfig, ProgressbarModule }; export type { ProgressbarType };