export declare type UpdateParams = { roomId: string; name: string; }; export declare function updateRoom(params: UpdateParams): Promise; export declare type AddDeviceParams = { roomId: number; devId: string; }; export declare function addDevice(params: AddDeviceParams): Promise; export declare type RemoveDeviceParams = { roomId: string; devId: string; }; export declare function removeDeviceRoom(params: RemoveDeviceParams): Promise; export declare type RemoveGroupParams = { roomId: string; groupId: string; }; export declare function removeGroup(params: RemoveGroupParams): Promise; export declare type AddGroupParams = { roomId: string; groupId: string; }; export declare function addGroup(params: AddGroupParams): Promise; export declare function getRoomInstance(roomId: number): Promise;