/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; /** * Component that displays a grid of cards, each containing an image, icon, title, and description. Some cards may be faded to indicate an inactive state. * Selector: setup_platform_unifiedapp-studio-home-card * generated from JSON dist/applications/studioHomeCard.utam.json * @version 2026-03-09T13:56:34.958Z * @author Salesforce */ declare class StudioHomeCard extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the cards container is visible * @return boolean */ isCardsContainerVisible(): Promise; /** * Retrieve the title of the card * @return string * @param _cardIndex index of parent element */ getCardTitle(_cardIndex: number): Promise; /** * Retrieve the description of the card * @return string * @param _cardIndex index of parent element */ getCardDescription(_cardIndex: number): Promise; /** * Check if any cards are present in the container * @return boolean[] * @param _cardIndex index of parent element */ areCardsPresent(_cardIndex: number): Promise; /** * Check if a card's image is visible * @return boolean * @param _cardIndex index of parent element */ isCardImageVisible(_cardIndex: number): Promise; /** * Check if a card's icon is visible * @return boolean * @param _cardIndex index of parent element */ isCardIconVisible(_cardIndex: number): Promise; /** * Retrieve all card elements in the container as an array * @return card[] * @param _cardIndex index of parent element */ getAllCards(_cardIndex: number): Promise<(_BaseUtamElement)[]>; getRoot(): Promise<(_BaseUtamElement)>; } export = StudioHomeCard;