import React from 'react'; export interface AvatarProps extends React.HTMLAttributes { children?: React.ReactNode; /** * Set the shap of avatar */ shap?: 'rounded' | 'circle'; /** * Set the size of avatar */ size?: string; /** * Set the alternative of avatar */ alt?: string; /** * The address of the image for an image avatar or image element */ src?: string; /** * Set the color of avatar */ color?: string; /** * Set the color of avatar */ background?: string; } export declare const Avatar: React.FC;