import { ComponentPropsWithoutRef, ReactNode } from 'react'; import { AvatarSize, AvatarGroupLayout } from '@viasat/beam-shared/components/avatar'; export interface AvatarGroupProps extends ComponentPropsWithoutRef<'div'> { /** * Add Avatars to create a group */ children: ReactNode; /** * Specify if the AvatarGroup wraps * @default false */ wrapping?: boolean; /** * Specify the max number of avatars displayed in the group. * @default 5 */ maxCount?: number; /** * Specify the size of all Avatars * @default 'md' */ size?: AvatarSize; /** * Specify the layout of the group. * @default 'stacked' */ layout?: AvatarGroupLayout; } export declare const AvatarGroup: ({ children: _children, wrapping, size, layout, className: _className, maxCount, ...props }: AvatarGroupProps) => import("react/jsx-runtime").JSX.Element;