///
///
import { DefaultServerResponse } from '../API';
export declare class RoomRequest {
static create(buffer: Buffer): Promise;
static createPassword(roomId: string, password: string): Promise;
static setPassword(roomId: string, userID: string, password: string): Promise;
static getRoom(roomId: string): Promise;
static listRooms(): Promise;
static listUsersInRoom(roomId: string): Promise;
static downloadRoom(roomId: string): Promise;
static createSocket(): Promise;
}