/** AvatarGroup component properties */ export type OreAvatarGroupProps = { /** Maximum number of avatars to show before showing a +N badge */ max?: number; /** Total count shown in the overflow badge (defaults to the actual hidden count) */ total?: number; }; /** * Groups multiple `ore-avatar` elements in a stacked, overlapping row. * * @element ore-avatar-group * * @attr {number} max - Max visible avatars before overflow badge (default: 5) * @attr {number} total - Override the total count displayed in the badge * * @slot - `ore-avatar` elements * * @cssprop --avatar-group-overlap - Negative margin creating the overlap (default: -0.75rem) * * @part overflow - Overflow count badge shown when avatars exceed `max`. * * @example * ```html * * * * * * * ``` */ export declare const AVATAR_GROUP_TAG: "ore-avatar-group"; //# sourceMappingURL=avatar-group.d.ts.map