/** * ```js * import { updateRoom } from '@amityco/ts-sdk' * const updated = await updateRoom('roomId', { title: 'updated title' }) * ``` * * Updates an {@link Amity.InternalRoom} * * @param roomId The ID of the room to update * @param bundle The data to update the room with * @returns The updated {@link Amity.InternalRoom} * * @category Room API * @async */ export declare const updateRoom: (roomId: string, bundle: Partial<{ title: string; thumbnailFileId: string; description: string; metadata: Record; liveChatEnabled: boolean; parentRoomId: string; }>) => Promise>; //# sourceMappingURL=updateRoom.d.ts.map