import { LogType } from '../logger'; import Rpc from '../rpc'; export declare class HubPort { private objId; private hubId; protected rpc: Rpc; protected logger: LogType; constructor(objId: string, hubId: string); getObjectId(): string; getHubId(): string; release(): Promise<{ sessionId: string; } | null>; }