import { LocalVideo } from './LocalVideo'; import { RemoteVideo } from './RemoteVideo'; /** * The VideoService allows managing the local participant's and remote participants' video. * * This service is available in SDK 3.7 and later. */ export declare class VideoService { /** @internal */ _localVideo: LocalVideo; /** @internal */ _remoteVideo: RemoteVideo; /** * Video settings for the local participant. */ getLocal(): LocalVideo; /** * Video settings for remote participants. */ getRemote(): RemoteVideo; } declare const _default: VideoService; export default _default;