import type { WS_MIND_TYPE } from '@mindverse/accessor-open'; interface IParam { refUserId: string | number; mindId: string; mindType: WS_MIND_TYPE; } declare function userGet({ refUserId, mindId, mindType }: IParam): Promise; export default userGet;