/** * 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 } from '@utam/core'; import _ViewRecordListInternal from 'salesforce-pageobjects/feeds/chat/pageObjects/viewRecordListInternal'; /** * Component that displays a list of records within a card structure, including a title and the ability to handle record updates. * Selector: feeds_chat-view-record-list * generated from JSON dist/feeds/chat/viewRecordList.utam.json * @version 2026-03-09T13:56:35.710Z * @author Salesforce */ export default class ViewRecordList extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Represents the title of the card. */ getCardTitle(): Promise<(_BaseUtamElement)>; /** * Represents the internal component that displays the list of records. */ getRecordListInternal(): Promise<_ViewRecordListInternal>; }