import { ServerWebrtcCapturer } from "../ServerWebrtcCapturer";
import VideoType from "../../util/VideoType";
import { FileResponse } from "../FileResponse";
import { ServerCapturer } from "../ServerCapturer";
export declare class DefaultServerWebrtcCapturer implements ServerWebrtcCapturer {
    private capturer;
    private currentUserIdentity;
    private counterpartIdentity;
    constructor(capturer: ServerCapturer, currentUserIdentity: string, counterpartIdentity: string);
    takeLocalScreenshot(videoType: VideoType): Promise<FileResponse>;
    takeRemoteScreenshot(videoType: VideoType): Promise<FileResponse>;
}
