import React from 'react';
import { MarginType } from '../../../types/styleType';
import { AVATAR_OPTION, AVATAR_STATUS } from './options';
export interface IAvatarProps extends React.ImgHTMLAttributes<HTMLImageElement>, MarginType {
    size?: keyof typeof AVATAR_OPTION;
    status?: keyof typeof AVATAR_STATUS;
}
declare const Avatar: React.ForwardRefExoticComponent<IAvatarProps & React.RefAttributes<HTMLImageElement>>;
export default Avatar;
