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. * * @csspart overflow - The overflow part. * * @cssprop {String} --avatar-group-background-color - The group background color CSS custom property. * @cssprop {String} --avatar-group-border-color - The group border color CSS custom property. * @cssprop {String} --avatar-group-border-radius - The group border radius CSS custom property. * @cssprop {String} --avatar-group-border-style - The group border style CSS custom property. * @cssprop {String} --avatar-group-border-width - The group border width CSS custom property. * @cssprop {String} --avatar-group-font-family - The group font family CSS custom property. * @cssprop {String} --avatar-group-font-letter-spacing - The group font letter spacing CSS custom property. * @cssprop {String} --avatar-group-font-line-height - The group font line height CSS custom property. * @cssprop {String} --avatar-group-font-size - The group font size CSS custom property. * @cssprop {String} --avatar-group-font-text-decoration - The group font text decoration CSS custom property. * @cssprop {String} --avatar-group-font-text-transform - The group font text transform CSS custom property. * @cssprop {String} --avatar-group-font-weight - The group font weight CSS custom property. * @cssprop {String} --avatar-group-foreground-color - The group foreground color CSS custom property. * @cssprop {String} --avatar-group-gap - The group gap CSS custom property. * @cssprop {String} --avatar-group-padding-bottom - The group padding bottom CSS custom property. * @cssprop {String} --avatar-group-padding-left - The group padding left CSS custom property. * @cssprop {String} --avatar-group-padding-right - The group padding right CSS custom property. * @cssprop {String} --avatar-group-padding-top - The group padding top CSS custom property. * @cssprop {String} --avatar-group-shadow - The group shadow CSS custom property. * @cssprop {String} --avatar-group-shadow-blur - The group shadow blur CSS custom property. * @cssprop {String} --avatar-group-shadow-color - The group shadow color CSS custom property. * @cssprop {String} --avatar-group-shadow-offset-x - The group shadow offset x CSS custom property. * @cssprop {String} --avatar-group-shadow-offset-y - The group shadow offset y CSS custom property. * @cssprop {String} --avatar-group-shadow-spread - The group shadow spread CSS custom property. * @cssprop {String} --avatar-group-transition-duration - The group transition duration CSS custom property. * @cssprop {String} --avatar-group-transition-mode - The group transition mode CSS custom property. * @cssprop {String} --avatar-group-transition-property - The group transition property CSS custom property. * @cssprop {String} --avatar-group-translate - The group translate CSS custom property. * * @dependency mosaik-avatar - The Avatar element. * * @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