import type { Session } from "../Session.js"; /** * Join a room and wait for it to arrive in the next sync * @param roomId The id of the room to join * @param session A session instance */ export declare function joinRoom(roomId: string, session: Session): Promise;