import { FC, HTMLAttributes, Ref } from 'react';
import { AvatarGroupSize, AvatarGroupVariant } from './types';
export interface AvatarGroupProps extends HTMLAttributes {
/**
* Ref forwarded to the root `div` element of the avatar group.
* Useful for direct DOM access (e.g., measuring width or attaching listeners).
*/
ref?: Ref;
/**
* Size of all avatar items within the group.
* Ensures consistent sizing across all items.
*/
size?: AvatarGroupSize;
/**
* Variant for all avatars in the group.
* Applies a unified visual style (e.g., `primary`, `secondary`).
*/
variant?: AvatarGroupVariant;
}
/** An Avatar Group is a UI component that displays multiple avatars in a compact, overlapping, or grid-like arrangement, commonly used to represent a group of users, such as team members or participants in a conversation. */
export declare const AvatarStack: FC;