import * as react_jsx_runtime from 'react/jsx-runtime';
import { AvatarProps, AvatarSize } from './Avatar.mjs';

type AvatarGroupProps = {
    avatars: Omit<AvatarProps, 'size'>[];
    maxShownProfiles?: number;
    size?: AvatarSize;
};
/**
 * A component for showing a group of Avatar's
 */
declare const AvatarGroup: ({ avatars, maxShownProfiles, size }: AvatarGroupProps) => react_jsx_runtime.JSX.Element;

export { AvatarGroup, type AvatarGroupProps };
