/** * * Agora Real Time Engagement * Created by Lyu Ge in 2022-01. * Copyright (c) 2022 Agora IO. All rights reserved. * */ import { CmdValue } from '../msg/cmd/cmd'; export declare class Client { constructor(uri: string); sendJson(json: CmdValue): Promise; sendData(data: ArrayBuffer): void; }