import { LitElement, PropertyValues } from 'lit'; import { AvatarGroupLayout, AvatarSize } from '@viasat/beam-shared/components/avatar'; /** * `bm-avatar-group` * * @slot default - Add Avatars to create a group */ export declare class BmAvatarGroup extends LitElement { #private; static styles: import('lit').CSSResult[]; /** * Specify if the AvatarGroup wraps * @default false */ wrapping: boolean; /** * Specify the max number of avatars displayed in the group. * @default 5 */ maxCount: number; /** * Specify the size of all Avatars * @default 'md' */ size: AvatarSize; /** * Specify the kind of the group. * @default 'stacked' */ layout?: AvatarGroupLayout; private groupCtx; willUpdate(changed: PropertyValues): void; firstUpdated(): void; updated(): void; disconnectedCallback(): void; render(): import('lit-html').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'bm-avatar-group': BmAvatarGroup; } } //# sourceMappingURL=AvatarGroup.d.ts.map