import { AvatarBaseProps } from "@re-flex/styled/Avatar"; import { TextVariant } from "@re-flex/styled/Typography"; import React from "react"; declare type AvatarProps = AvatarBaseProps & { label?: string; src?: string; textVariant?: TextVariant; icon?: JSX.Element; showChar?: number; textColor?: string; }; declare const Avatar: React.FC; export default Avatar;