import type { StringOrElement } from './../utils/element.types';
/**
 * A condition for checking an element is visible and clickable
 *
 * @example
 * browser.waitUntil(elementToBeClickable('.links'));
 *
 * @param {!string | ChainablePromiseElement<WebdriverIO.Element>} selectorOrElement The selector or element to check
 *
 * @returns {!function} An expected condition that returns a promise
 *     representing whether the element is clickable.
 */
export declare function elementToBeClickable(selectorOrElement: StringOrElement): () => Promise<boolean>;
