import { AgoraObservable } from '../../imports'; import { AgoraRtcClient } from '../rtc'; import { AgoraRteObservableTrack } from './type'; export declare abstract class AgoraRteBaseTrack implements AgoraRteObservableTrack { protected _rtcClient: AgoraRtcClient; protected trackObservable: AgoraObservable; constructor(_rtcClient: AgoraRtcClient); addObserver(observer: T): void; removeObserver(observer: T): void; }