/** * The LocalVideo model allows enabling and disabling the local participant's video. * * This model is supported only in SDK 3.7 and later. */ export declare class LocalVideo { /** @internal */ _localVideo: any; /** * Enables the local participant's video and sends the video to a conference. * */ start(): Promise; /** * Disables the local participant's video and stops sending the video to a conference. * Use this method only when the current participant is at the conference. */ stop(): Promise; } declare const _default: LocalVideo; export default _default;