///
import type { EAppMode } from '../../utils/const';
interface IProps {
userPicture: string;
userModel: string;
userGender: string;
userType?: 'iconModel' | 'pictureModel';
appMode: EAppMode;
isExpand: boolean;
hidden?: boolean;
openExpand(): void;
}
declare function Avatar(props: IProps): JSX.Element | null;
declare const _default: import("react").MemoExoticComponent;
export default _default;