/** * 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'; import _SearchBar from 'salesforce-pageobjects/salesforceapp/pageObjects/navigation/searchBar'; import _AppItemsList from 'salesforce-pageobjects/salesforceapp/pageObjects/navigation/appItemsList'; /** * Selector: resourceId("com.salesforce.chatter:id/frag"). * Represents the Android 'App Launcher' fragment. * Start a search or interact with the existing list of apps. * generated from JSON dist/salesforceapp/navigation/appLauncherNavAndroid.utam.json * @version 2026-03-09T13:56:34.349Z * @author Salesforce */ export default class AppLauncherNavAndroid extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getSearchBar(): Promise<_SearchBar>; getAppItemsList(): Promise<_AppItemsList>; }