import { WebElement } from 'selenium-webdriver'; import { OjWebElement, ElementLocators } from '../elements/OjWebElement'; /** * Register a constructor for a custom WebElement for a given tag name. * @param tagName The DOM tag name for the custom element * @param ctor The constructor function for the custom WebElement */ export declare function register(tagName: string, ctor: new (el: WebElement, locators: ElementLocators) => OjWebElement): void;