web3-mq-react
Version:
web3-mq-react-components
12 lines (11 loc) • 418 B
TypeScript
import React, { PropsWithChildren } from 'react';
import type { CommonUserInfoType } from '../Chat/hooks/useQueryUserInfo';
declare type IProps = {
userInfo?: CommonUserInfoType;
AvatarNode?: React.ReactNode;
isTab?: boolean;
isSelf?: boolean;
hasLogout?: boolean;
};
export declare const Profile: React.MemoExoticComponent<(props: PropsWithChildren<IProps>) => JSX.Element>;
export {};