import { WebElement } from "selenium-webdriver"; /** * Condition to wait until an element's attribute has a specified value * @param element webelement to check * @param attribute attribute to check * @param value value to wait for the attribute to have */ export declare function waitForAttributeValue(element: WebElement, attribute: string, value: string): () => Promise;