import React from "react"; type UserAvatarProps = { isOwner?: boolean; width?: number; height?: number; tooltip?: boolean; src?: string; name?: string; }; export declare const UserAvatar: React.FC; export {};