import { CSSProperties } from "react"; import { User } from "@easyv/dtable-types/output/Base"; interface Props { withPopover?: boolean; userId: User["id"]; size: number; className?: string; wrapperStyle?: CSSProperties; baseColor?: string; } export default function UserAvatar({ userId, withPopover, className, wrapperStyle, size, baseColor, }: Props): JSX.Element; export {};