import { ReactNode } from "react";
import { AvatarShape, AvatarSpacing } from "./avatar.shared";
interface AvatarGroupProps {
    children: ReactNode[];
    shape?: AvatarShape;
    spacing?: AvatarSpacing;
    limit?: number;
    total?: number;
    className?: string;
}
export default function AvatarGroup(props: AvatarGroupProps): JSX.Element;
export {};
