/** * Copyright (c) 2025, Salesforce, Inc. * All rights reserved. * For full license text, see the LICENSE file or https://utam.dev/salesforce/license */ import { Driver as _Driver, Element as _Element, Locator as _Locator, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; /** * Represents a device alert (such as allowing notifications) usually when logging into the app. * generated from JSON dist/sfsmobileapp/deviceAlerts/deviceAlertiOS.utam.json * @version 2026-03-09T13:56:34.712Z * @author Salesforce */ declare class DeviceAlertiOS extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); clickAllowNotification(): Promise; clickAllowNotificationWhenUsingTheApp(): Promise; clickOK(): Promise; clickDenyNotification(): Promise; } export = DeviceAlertiOS;