import { CSSProperties, ReactNode } from "react";
import { FCC } from "../types";
interface Props {
children?: ReactNode;
style?: CSSProperties;
maxCount?: number;
isMaxPopoverBottom?: boolean;
maxStyle?: CSSProperties;
}
export declare const AvatarGroup: FCC<Props>;
export {};