import type { Room } from '../Room.ts';
import type { IRoomCache } from './driver.ts';
export declare function updateLobby<T extends Room>(room: T, removed?: boolean): void;
export declare function subscribeLobby(callback: (roomId: string, roomListing: IRoomCache) => void): Promise<() => any>;
