import type { StringOrElement } from './../utils/element.types'; /** * A condition for checking the element to be invisible * * @example * browser.waitUntil(invisibilityOf('.header')); * * @param {!string | ChainablePromiseElement} selectorOrElement The selector or element to check * * @returns {!function} An expected condition that returns a promise * representing whether the element is invisible. */ export declare function invisibilityOf(selectorOrElement: StringOrElement): () => Promise;