export type IAvatarGroupSizesType = 'xs' | 'sm' | 'md'; export interface IAvatarGroup { size?: IAvatarGroupSizesType; max?: number; data: any[]; wrapper?: (item: any, children: React.ReactElement) => React.ReactElement; }