import React from 'react'; import { AvatarProps } from './Avatar'; declare type AvatarElement = React.ReactElement; declare type Props = { /** * Specifies which avatar should be on top (in front). 'left' means that first avatar in the list is on top. * @default 'left' */ stack?: 'right' | 'left'; /** * Avatars in cluster . */ children: AvatarElement | Array; }; export declare const AvatarCluster: (props: Props) => JSX.Element; export {};