import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
import * as i0 from "@angular/core";
/**
* MenuParticipantsWidget displays an icon and a counter for participants in a compact, customizable widget.
*
* @selector app-menu-participants-widget
* @standalone true
* @imports CommonModule, FontAwesomeModule
*
* @inputs
* - `icon` (IconDefinition): The FontAwesome icon to display.
* - `iconColor` (string): The color of the icon. Default is 'black'.
* - `participantsCounter` (number): The number of participants displayed next to the icon.
*
* @example
* ```html
*
* ```
**/
export declare class MenuParticipantsWidget {
icon: IconDefinition;
iconColor: string;
participantsCounter: number;
constructor(icon: IconDefinition, iconColor: string, participantsCounter: number);
get normalizedCount(): string;
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}