import { HTMLAttributes, JSX, ReactElement, Ref } from 'react'; import { AvatarProps } from '../Avatar'; export type AvatarGroupProps = HTMLAttributes & { ref?: Ref; children: ReactElement | ReactElement[]; className?: string; }; declare const AvatarGroup: { ({ ref: propRef, children, className, ...props }: AvatarGroupProps): JSX.Element; displayName: string; }; export default AvatarGroup;