import { type DataTestId, type MaskingProps, type StylingProps, type WithChildren, type AriaLabelingProps } from '@dynatrace/strato-components/core'; /** * Accepted properties for AvatarGroup * @public */ export type AvatarGroupProps = WithChildren & AriaLabelingProps & StylingProps & DataTestId & MaskingProps; /** * The `Avatar` component can be used as a visual representation of multiple users. * @public */ export declare const AvatarGroup: ((props: WithChildren & AriaLabelingProps & StylingProps & DataTestId & MaskingProps & import("react").RefAttributes) => React.ReactElement | null) & { Item: (props: import("./Item.js").AvatarGroupItemProps) => import("react").ReactElement | null; };