import { WebElement } from "selenium-webdriver"; import { Editor } from "./Editor"; /** * Page object representing an open editor containing a web view */ declare class WebViewBase extends Editor { getViewToSwitchTo(handle: string): Promise; } export declare const WebView: new (...args: any[]) => WebViewBase & import("../WebviewMixin").WebviewMixinType; export type WebView = InstanceType; export {};