import { TrackLibType } from '../../type/index'; import { default as Stream } from '../stream'; import { default as BaseTrack } from './baseTrack'; declare class CustomVideoAudioTrack extends BaseTrack { private trackType; constructor(streamInstance: Stream); getTrackType(): TrackLibType; } export default CustomVideoAudioTrack;