import * as React from 'react'; import { Media } from '../Definitions'; export interface AudioSource { media: Media; volumeLimit: number; } export interface RemoteAudioPlayerProps { audioSources?: AudioSource[]; globalVolumeLimit?: number; outputDevice?: string; } /** * @description * The remote audio player component will play all enabled remote audio tracks. Only one instance needs to be used. * * @public * * @example *
Main app UI
*