import { SessionUser, VirtualSession } from './entities'; import type { RequestInfo } from '../helper'; export declare class ClientHelper { static reg(req: RequestInfo): Promise; static getSessionUsersByDevice(profileId: string, deviceId: string): Promise; static getSessionUser(profileId: string, virtualSession: VirtualSession, doNotCreate?: boolean): Promise; }