import { FC } from 'react'; import { VisualSizesEnum } from '../../helpers/fontHelpers'; export interface AvatarProps { /** The name to use for the avatar. */ name: string; /** If specified, we will render the image instead of initials. */ imgSrc?: string; /** The size of the avatar. */ size?: VisualSizesEnum; } export declare const Avatar: FC;