import React, { PropsWithChildren } from 'react';
import type { UserInfo, MemberUserInfo } from 'web2-mq';
declare type IProps = {
    userInfo: UserInfo | MemberUserInfo;
    AvatarNode?: React.ReactNode;
    isTab?: boolean;
    hasLogout?: boolean;
};
export declare type dids = {
    nextId: string;
    ens: string;
    dotBit: string[];
    nameTag: string[];
};
export declare const Profile: React.MemoExoticComponent<(props: PropsWithChildren<IProps>) => JSX.Element>;
export {};
