import type { CSSProperties } from 'react'; import type { WS_MIND_TYPE } from '@mindverse/accessor-open'; interface IProps { refUserId: string | number; style?: CSSProperties; mindId: string; mindType: WS_MIND_TYPE; onClose?: () => void; inChatMode: boolean; opened: boolean; } export interface IMemoryItem { uniqueKey: string; content: string; updateTime: string; } export interface UserInfo { [key: string]: string; } declare function UserEdit(props: IProps): JSX.Element; declare const _default: import("react").MemoExoticComponent; export default _default;