/** * 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, UtamBasePageObject as _UtamBasePageObject, ActionableUtamElement as _ActionableUtamElement, TouchableUtamElement as _TouchableUtamElement } from '@utam/core'; import _MobileHomeCard from 'salesforce-pageobjects/salesforceapp/pageObjects/mcfmobilehome/mobileHomeCard'; /** * Selector: UVMContainer. * Represents the iOS mobile home cards scrollview. * Verify cards are present or navigate to one. * generated from JSON dist/salesforceapp/mcfmobilehome/mobileHomeCardListiOS.utam.json * @version 2026-03-09T13:56:34.273Z * @author Salesforce */ declare class MobileHomeCardListiOS extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); flickToCardOfType(type: string): Promise; hasCardOfType(type: string): Promise; getRoot(): Promise<(_BaseUtamElement & _ActionableUtamElement & _TouchableUtamElement)>; getCards(): Promise<_MobileHomeCard[] | null>; getCardOfType(type: string): Promise<_MobileHomeCard | null>; } export = MobileHomeCardListiOS;