import { ComponentProps, FC } from 'react'; import { DeepPartial } from '../../types/types'; export interface AvatarGroupCounterTheme { base: string; } export interface AvatarGroupCounterProps extends ComponentProps<"a"> { theme?: DeepPartial; total?: number; } export declare const AvatarGroupCounter: FC; //# sourceMappingURL=AvatarGroupCounter.d.ts.map