import { WaitUntilOptions } from '../wait-until'; /** * Waits until the function getValue() returns the same result during 300 ms. * The waiting mechanism can be modified by setting options * * @export * @param {(() => Promise)} getValue * @param {(string | (() => Promise))} errorMessage * @param {WaitUntilOptions} [options=defaultWaitUntilOptions] * @returns {Promise} */ export declare function waitForStabilityOf(getValue: () => Promise, errorMessage: string | (() => Promise), options?: Partial): Promise;