export interface UserAvatarProps { /** Username must have at least two chars (which should be guaranteed by the backend). */ userName: string; } declare const _default: import("react").MemoExoticComponent; export default _default; declare function UserAvatar({ userName }: UserAvatarProps): import("react").JSX.Element;