import React from "react";
type AvatarGroupProps = {
    avatars: string[];
    size?: number;
    shape?: "circle" | "square";
    color?: string;
};
export declare const AvatarGroup: React.FC<AvatarGroupProps>;
export {};
