import { ElementWithContexMenu } from "../ElementWithContextMenu"; import { EditorTab, EditorView, EditorGroup } from "../.."; import { WebElement, Locator } from 'selenium-webdriver'; /** * Abstract representation of an editor tab */ export declare abstract class Editor extends ElementWithContexMenu { constructor(view?: EditorView | EditorGroup, base?: Locator | WebElement); /** * Get title/name of the open editor */ getTitle(): Promise; /** * Get the corresponding editor tab */ getTab(): Promise; }