import type { ComponentProps, PropsWithChildren } from 'react'; import React from 'react'; export interface FlowbiteAvatarGroupTheme { base: string; } export type AvatarGroupProps = PropsWithChildren>; declare const AvatarGroup: React.FC; export default AvatarGroup;