/** * 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: className("android.widget.ListView"). * Represents the Android list view of overflow actions from the toolbar. * Perform actions that are held in the toolbar overflow . * generated from JSON dist/salesforceapp/navigation/navBarOverflowMenuAndroid.utam.json * @version 2026-03-09T13:56:34.366Z * @author Salesforce */ declare class NavBarOverflowMenuAndroid extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); clickShare(): Promise; clickFavorite(): Promise; waitForIsFavorite(): Promise; waitForIsNotFavorite(): Promise; } export = NavBarOverflowMenuAndroid;