/** * 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, BaseUtamElement as _BaseUtamElement, ClickableUtamElement as _ClickableUtamElement, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _OfflineRecordList from 'salesforce-pageobjects/salesforceapp/pageObjects/offlineapp/offlineRecordList'; import _LandingPageActionList from 'salesforce-pageobjects/salesforceapp/pageObjects/offlineapp/landingPageActionList'; /** * Selector: %s. * Represents the iOS Landing Page Card. * Verify the card and its components. * generated from JSON dist/salesforceapp/offlineapp/landingPageCardiOS.utam.json * @version 2026-03-09T13:56:34.482Z * @author Salesforce */ declare class LandingPageCardiOS extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); viewMore(): Promise; hasViewMoreButton(): Promise; getCardTitle(): Promise; getRecordList(): Promise<_OfflineRecordList>; getActionList(): Promise<_LandingPageActionList>; } export = LandingPageCardiOS;