import type { StringOrElement } from './../utils/element.types'; /** * A condition for checking an element contains a specific value * * @example * browser.waitUntil(textToBePresentInElementValue('input', 'password')); * * @param {!string | ChainablePromiseElement} selectorOrElement The selector or element to check * @param {!string} expectedValue The expected value to verify * * @returns {!function} A condition that returns a promise * representing whether the element contains a specific value. */ export declare function textToBePresentInElementValue(selectorOrElement: StringOrElement, expectedValue: string): () => Promise;