/** * 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'; /** * Selector: .forceRelatedListCard. * Represents the related list card Aura component. * Access a card's header, title, or contents. * generated from JSON dist/force/relatedListCard.utam.json * @version 2026-03-09T13:56:35.877Z * @author Salesforce */ export default class RelatedListCard extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Gets the title of the card * @return the title of the card */ getCardTitle(): Promise; /** * Selects the card */ selectCard(): Promise; }