import React, { FC } from 'react'; import './index.css'; export type AvatarProps = { size: number; textSize: number; nickName: string; icon?: React.ReactNode; backgroundColor?: string; onClick?: () => void; isShowFirstLetter?: boolean; borderRadius?: number | string; avatarImage?: string; }; export declare const FcrAvatar: FC;