/** * 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, ActionableUtamElement as _ActionableUtamElement, ClickableUtamElement as _ClickableUtamElement, UtamBasePageObject as _UtamBasePageObject, TouchableUtamElement as _TouchableUtamElement } from '@utam/core'; /** * Selector: (card_name)_card. * Represents a iOS mobile home card. * Interact with the elements of the card. * generated from JSON dist/salesforceapp/mcfmobilehome/mobileHomeCardiOS.utam.json * @version 2026-03-09T13:56:34.276Z * @author Salesforce */ declare class MobileHomeCardiOS extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getRecordSubtitles(): Promise; getRecordTitles(): Promise; getTitle(): Promise; hasAddButton(): Promise; hasBody(): Promise; hasEditButton(): Promise; hasHeaderIcon(): Promise; toggleExpandCollapse(): Promise; getRoot(): Promise<(_BaseUtamElement & _ActionableUtamElement & _TouchableUtamElement)>; getRecordIcons(): Promise<(_BaseUtamElement & _ActionableUtamElement)[] | null>; } export = MobileHomeCardiOS;