import VideoType from "../../util/VideoType"; import { LocalWebrtcCapturer } from "../LocalWebrtcCapturer"; import { LocalCapturer } from "../LocalCapturer"; export declare class DefaultLocalWebrtcCapturer implements LocalWebrtcCapturer { private capturer; private currentUserIdentity; private counterpartIdentity; constructor(capturer: LocalCapturer, currentUserIdentity: string, counterpartIdentity: string); takeLocalScreenshot(videoType: VideoType): Promise; takeRemoteScreenshot(videoType: VideoType): Promise; }