import { HttpClient, RoomResponse } from '../types'; export interface GetRoomByIdOptions { id: string; } export interface GetRoomByNameOptions { name: string; } export type GetRoom = (options: T) => Promise; type getRoomFactory = (client: HttpClient) => { getRoomById: GetRoom; getRoomByName: GetRoom; }; export declare const getRoomFactory: getRoomFactory; export {}; //# sourceMappingURL=getRoomFactory.d.ts.map