import type { PropsWithChildren, ReactNode } from "react"; export type AvatarGroupProps = PropsWithChildren<{ children: ReactNode; }>; export declare const AvatarGroup: React.FC;