/// export declare type UserAvatarSize = 'xs' | 's' | 'm' | 'l' | 'xl'; export interface UserAvatarProps { imgUrl?: string; size?: UserAvatarSize; title?: string; className?: string; onClick?: () => void; } export declare function UserAvatar({ imgUrl, size, title, className, onClick }: UserAvatarProps): JSX.Element;