/** * 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 _StatefulCommonList from 'salesforce-pageobjects/lists/pageObjects/statefulCommonList'; /** * Component that manages a list view with dynamic state management and renders a card containing a child list component. * Selector: src-agentic-list-view-manager * generated from JSON dist/setup/agenticListViewManager.utam.json * @version 2026-03-09T13:56:36.953Z * @author Salesforce */ declare class AgenticListViewManager extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that the card container is present and visible * @return boolean */ isCardContainerVisible(): Promise; /** * Check that the card header is present and visible * @return boolean */ isCardHeaderVisible(): Promise; /** * Get the text content of the card title * @return string */ getCardTitle(): Promise; /** * Check that the list container is present and visible * @return boolean */ isListContainerVisible(): Promise; /** * Returns true if element "cardContainer" present on the page * @return boolean */ verifyCardContainerPresence(): Promise; /** * Represents the child list component that dynamically manages state and renders the list view */ getStatefulList(): Promise<_StatefulCommonList | null>; } export = AgenticListViewManager;