import * as React from 'react'; export interface AvatarProps { /** Shape of avatar, options:`circle`, `square` */ shape?: 'circle' | 'square'; size?: 'large' | 'small' | 'default' | number; /** Src of image avatar */ src?: string; /** Type of the Icon to be used in avatar */ icon?: string; style?: React.CSSProperties; prefixCls?: string; className?: string; children?: any; alt?: string; onError?: () => boolean; } export interface AvatarState { scale: number; isImgExist: boolean; } declare const Avatar: React.ForwardRefExoticComponent>; export default Avatar;