///
import { type AvatarGroupProps as MuiAvatarGroupProps } from '@mui/material';
import { type WithoutEmotionSpecific } from '../types';
import { type AvatarGroupSize } from './types';
export type AvatarGroupProps = WithoutEmotionSpecific & {
size?: AvatarGroupSize;
};
export declare const AvatarGroup: (props: AvatarGroupProps) => JSX.Element;