import type { PropsWithChildren } from "react"; import type { AvatarSizes } from "./Avatar"; export type AvatarGroupdCounterProps = PropsWithChildren<{ total?: number; href: string; size?: keyof AvatarSizes; }>; export declare const AvatarGroupCounter: React.FC;