import type { AriaLabelingProps } from '../../core/types/a11y-props.js'; import type { BehaviorTrackingProps } from '../../core/types/behavior-tracking-props.js'; import type { DataTestId } from '../../core/types/data-props.js'; import type { MaskingProps } from '../../core/types/masking-props.js'; import type { StylingProps } from '../../core/types/styling-props.js'; import type { WithChildren } from '../../core/types/with-children.js'; /** * Accepted properties for AvatarGroup * @public */ export type AvatarGroupProps = WithChildren & AriaLabelingProps & StylingProps & DataTestId & MaskingProps & BehaviorTrackingProps; /** * The `Avatar` component can be used as a visual representation of multiple users. * @public */ export declare const AvatarGroup: ((props: WithChildren & AriaLabelingProps & StylingProps & DataTestId & MaskingProps & BehaviorTrackingProps & import("react").RefAttributes) => import("react").ReactElement | null) & { Item: (props: import("./Item.js").AvatarGroupItemProps) => import("react").ReactElement | null; };