import * as _angular_core from '@angular/core';
/**
* Badges are small status descriptors for UI elements. A badge consists of a small circle, containing a number, that
* appears in proximity to another object.
*
* ```html
*
* ```
*/
declare class BadgeComponent {
/**
* The actual counter value
*/
counter: _angular_core.InputSignalWithTransform;
/**
* The maximum value to display. If the actual value is greater than the max value, the max value will be displayed
* followed by a plus sign.
*
* ```typescript
* // Component class
* protected myValue = 12;
* ```
*
* ```html
*
*
* ```
*/
maxVal: _angular_core.InputSignalWithTransform;
static ɵfac: _angular_core.ɵɵFactoryDeclaration;
static ɵcmp: _angular_core.ɵɵComponentDeclaration;
}
export { BadgeComponent };