import React from 'react'; export interface IAvatarGroupProps { /** Mandatory children */ children: React.ReactNode[]; /** Option max display avatars */ maxCount?: number; /** Optional max display count */ maxDisplayedCount?: number; /** Optional Class name */ className?: string; /** Optional passed styles */ style?: object; /** Size variation, default is medium. Please pass this for the more item circle */ size?: 'small' | 'medium' | 'large' | number; /** Hide the more item icon if item count exceeds maxCount */ hideMoreItem?: boolean; } /** * Avatar group component should be used for medium sized elements. We need to reverse * to have the effect of each child avatar being behind each other, flowing from left to right. */ export declare const AvatarGroup: React.FC;