import React$1, { ElementType } from 'react'; interface AvatarProps extends Omit, 'size'> { picture?: string; chars?: string; size?: 'small' | 'medium' | 'large'; variant?: 'circular' | 'square'; defaultPicture?: string; className?: string; Component?: ElementType; componentProps?: Record; } declare const Avatar: React$1.ForwardRefExoticComponent>; export { type AvatarProps, Avatar as default };