import VideoType from "../../util/VideoType";
import { LocalCapturer } from "../LocalCapturer";
import { AbstractCapturer } from "./AbstractCapturer";
export declare class DefaultLocalCapturer extends AbstractCapturer implements LocalCapturer {
    takeScreenshot(identity: string, videoType: VideoType): Promise<string>;
}
