import { AvatarProps } from 'antd';
import { FC } from 'react';
import { AVATAR } from '../../Types';
export interface IAvatar {
    ctype: typeof AVATAR;
    props: AvatarProps;
}
declare const Avatar: FC<IAvatar>;
export default Avatar;
