import { HTMLAttributes, ReactElement } from 'react';
import { AvatarProps } from '../../../../components/Blocks/Avatar/Avatar';
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;
//# sourceMappingURL=AvatarStack.d.ts.map