import type { CSSResultGroup } from 'lit'; import { ShoelaceElement } from '../../internal/shoelace-element'; /** * @summary The avatar-group displays avatars in a grouped style * @documentation https://dsa.service-public-autonomie.fr/latest/librairie-webcomponents/avatar/groupe-d-avatars-avatar-group/web-NAZpgVAA * * @slot - The avatar group's content - only works with `dsa-avatar` * */ export default class DSAAvatarGroup extends ShoelaceElement { static styles: CSSResultGroup; defaultSlot: HTMLSlotElement; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'dsa-avatar-group': DSAAvatarGroup; } }