import React from 'react'; import { AvatarProps } from './avatar'; import { BaseProps } from '../_utils/props'; export interface AvatarGroupProps extends BaseProps { children: React.ReactElement; } declare const AvatarGroup: (props: AvatarGroupProps) => JSX.Element; export default AvatarGroup;