import { default as React } from 'react'; import { AvatarProps, AvatarShape, AvatarSize } from './Avatar'; export interface AvatarGroupProps { children?: React.ReactNode; items?: AvatarProps[]; max?: number; overlap?: number; direction?: 'ltr' | 'rtl'; size?: AvatarSize | number; shape?: AvatarShape; onAvatarClick?: (item: AvatarProps, index: number, e: React.MouseEvent) => void; onOverflowClick?: () => void; id?: string; className?: string; ariaLabel?: string; } declare const AvatarGroup: React.FC; export { AvatarGroup }; export default AvatarGroup;