import { ElementType, FC, HTMLAttributes } from 'react'; export interface AvatarPresenceProps extends HTMLAttributes { /** Utilizzarlo in caso di utilizzo di componenti personalizzati */ tag?: ElementType; /** Classi aggiuntive da usare per il componente AvatarPresence */ className?: string; /** Utilizzare questo attributo per indicare il tipo di presenza dell'utente. */ presence: 'active' | 'busy' | 'hidden' | string; testId?: string; } export declare const AvatarPresence: FC;