swap-chat-react
Version:
swap-chat-react-components
17 lines (16 loc) • 504 B
TypeScript
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 {};