import VideoType from "../util/VideoType";
export interface Capturer<T> {
    takeScreenshot(identity: string, videoType: VideoType): Promise<T>;
}
