import React from "react"; export type AvatarGroupProps = { labels: string[]; /** Maximum number of avatars to display before showing overflow counter */ maxCount?: number; showCount?: boolean; "data-e2e-test-id"?: string; }; export declare function AvatarGroup({ labels, maxCount, showCount, "data-e2e-test-id": dataE2eTestId, ...ariaAttributes }: AvatarGroupProps): React.ReactElement;