import { ReactNode } from 'react'; import { AvatarSize } from './Avatar.js'; export interface AvatarGroupOptions { children: ReactNode; size?: AvatarSize; moreCount?: number; } export declare const AvatarGroup: (props: AvatarGroupOptions) => JSX.Element;