/** * 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, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _LandingPageActionItem from 'salesforce-pageobjects/salesforceapp/pageObjects/offlineapp/landingPageActionItem'; /** * Selector: **/XCUIElementTypeOther[`name == 'action_row'`]. * Represents the iOS Landing Page Action Row inside of Action List. * Verify the action row items. * generated from JSON dist/salesforceapp/offlineapp/landingPageActionRowiOS.utam.json * @version 2026-03-09T13:56:34.472Z * @author Salesforce */ declare class LandingPageActionRowiOS extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getActionItemAtIndex(index: number): Promise<_LandingPageActionItem | null>; getActionItems(): Promise<_LandingPageActionItem[] | null>; getActionItemByName(name: string): Promise<_LandingPageActionItem | null>; } export = LandingPageActionRowiOS;