import { HTMLAttributes, ReactElement } from 'react'; import { default as styles } from './AvatarStack.module.css'; import { AvatarProps } from '../Avatar/Avatar'; export { styles as AvatarStackClasses }; export interface AvatarStackProps extends HTMLAttributes { /** An array of `Avatar` components to be rendered within the stack. */ children: ReactElement[]; } /** * Renders a container for displaying avatars in a stacked layout. This component * allows for the creation of visually grouped avatar representations, often used * to indicate multiple users or participants. */ export declare const AvatarStack: ({ children, ...restProps }: AvatarStackProps) => JSX.Element;