/** * ```js * import { getRoomOnlineUsers } from '@amityco/ts-sdk' * const result = await getRoomOnlineUsers('roomId') * ``` * * Retrieves the list of users currently online in a specific room. * This function fetches all users who are actively watching or present in the room, * handling pagination automatically for large numbers of users. * * @param roomId The ID of the room to get online users for * @returns Promise that resolves with a cached list of online users * * @category Room Presence API * @async */ export declare const getRoomOnlineUsers: (roomId: string) => Promise>; //# sourceMappingURL=getRoomOnlineUsers.d.ts.map