/**
 * A condition for checking an alert on the page
 *
 * @example
 * browser.waitUntil(alertIsPresent());
 *
 * @returns {!function} A condition that returns a promise
 *     representing whether an alert is present.
 */
export declare function alertIsPresent(): () => Promise<boolean>;
