/** * * Agora Real Time Engagement * Created by Wei Hu in 2022-04. * Copyright (c) 2022 Agora IO. All rights reserved. * */ export interface RteLoc { uri: string; graph_id: string; extension_group: string; extension: string; } export declare const PUBLISH_EVENT_NAME = "publish_event"; /** * The user data sent to the UI widget by 'sendPublishEvent()'. */ export interface RteUiEventData { type: string; detail: any; [extra: string]: any; }