import { Route } from '../../../types/route'; import { RoomInfo } from '../../../types/client'; export type RoomInfoRouteParams = { roomId?: string; } | void; export type RoomInfoResponse = any; export declare class FetchRoomInfoRoute extends Route { call(params: RoomInfoRouteParams): Promise; } //# sourceMappingURL=fetch-room-info.d.ts.map