/** * 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'; /** * Selector: profileMenu. * Represents the iOS offline profile menu view. * Switch apps, user accounts, logout. * generated from JSON dist/salesforceapp/offlineapp/offlineProfileMenuiOS.utam.json * @version 2026-03-09T13:56:34.509Z * @author Salesforce */ declare class OfflineProfileMenuiOS extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); openAppLauncher(): Promise; changeAccount(): Promise; logout(): Promise; } export = OfflineProfileMenuiOS;