import { OnChanges } from '@angular/core'; import * as i0 from "@angular/core"; export declare class IconWithCounterComponent implements OnChanges { /** * The CSS class used to display the icon. * For example, you can pass a Bootstrap class like 'bi bi-person'. */ iconClass: string; /** * The URL where the user will be navigated when the icon is clicked. */ navigationUrl: string; /** * Determines whether the counter should be displayed. Default is `false`. */ showCounter?: boolean; /** * If true, the counter will be hidden when its value is zero. Default is `false`. */ dynamicCounter?: boolean; /** * Current value of the counter. Default is `0`. */ counterValue?: number; /** * Optional background color for the counter. You can pass any valid CSS color value. */ counterColor?: string; /** * Optional font color for the counter value. You can pass any valid CSS color value. */ counterFontColor?: string; ngOnChanges(): void; manageCounterBehavior(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }