import React, { ReactNode } from 'react'; export declare type TAvatarGroup = { children?: ReactNode; className?: string; rounded?: 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | 'full'; size?: 'sm' | 'md' | 'lg' | 'xl'; textSize?: string; }; export declare const AvatarGroup: React.ForwardRefExoticComponent>; export default AvatarGroup;