import { ElementType, FC, HTMLAttributes } from 'react';
export interface AvatarStatusProps extends HTMLAttributes {
/** Utilizzarlo in caso di utilizzo di componenti personalizzati */
tag?: ElementType;
/** Classi aggiuntive da usare per il componente AvatarStatus */
className?: string;
/** Utilizzare questo attributo per indicare il tipo di stato dell'utente. */
status: 'approved' | 'declined' | 'notify' | string;
testId?: string;
}
export declare const AvatarStatus: FC;