import { PropsWithChildren } from 'react'; import { AvatarProps } from './Avatar'; export interface AvatarGroupProps extends PropsWithChildren, AvatarProps { max?: number; className?: string; avatarClassName?: string; } export declare const AvatarGroup: ({ max, className, children, avatarClassName, variant, ...restProps }: AvatarGroupProps) => import("react/jsx-runtime").JSX.Element;