import { CustomElement } from '../../Abstracts/CustomElement'; import { IAvatarGroupElementProps } from './IAvatarGroupElementProps'; declare const AvatarGroupElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Sizeable").ISizeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Variantable").IVariantableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Appearanceable").IAppearanceableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Avatar Group - A grouping of avatar images typically representing multiple users or entities, often used for social or team displays. * * @element mosaik-avatar-group * * @slot - The default slot. * @slot overflow - The overflow slot. * * @example * Basic avatar group: * ```html * * * * * * ``` * * @example * Avatar group with max visible count and shared appearance: * ```html * * * * * * * * ``` * * @public */ export declare class AvatarGroupElement extends AvatarGroupElement_base implements IAvatarGroupElementProps { private readonly _provider; private _maxLength; private _overflowLength; /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; /** * Gets or sets the `maxLength` property. * * @public * @attr */ get maxLength(): number; set maxLength(value: number); /** * Gets a `number` that displays the overflow length of the `AvatarGroupElement`. * * @protected * @readonly */ get overflowLength(): number; /** * Gets a `boolean` that indicates whether the `AvatarGroupElement` has a overflow or not. * * @protected * @readonly */ get hasOverflow(): boolean; /** * Handles slot changes to manage visibility and overflow calculation. * * @private * @param _event - The slot change event. */ onSlotChange(_event: Event): void; /** * Called when maxLength property changes. * * @protected */ protected onMaxLengthPropertyChanged(): void; /** * Updates the visibility of slotted items based on maxLength and calculates overflow. * * @private */ private updateVisibilityAndOverflow; } /** * @public */ export declare namespace AvatarGroupElement { type Props = IAvatarGroupElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-avatar-group': AvatarGroupElement; } } export {}; //# sourceMappingURL=AvatarGroupElement.d.ts.map