export type SwirlAvatarGroupLayout = "diagonal" | "horizontal"; export type SwirlAvatarGroupSemantics = "list" | "group"; /** * @slot slot - Your avatar components */ export declare class SwirlAvatarGroup { badge?: string; label?: string; layout?: SwirlAvatarGroupLayout; semantics?: SwirlAvatarGroupSemantics; avatars: HTMLElement[]; private badgeEl; componentDidLoad(): void; private forceBadgeProps; private onSlotChange; private layOutAvatars; render(): any; }