/** * 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 _ExpandableRenditionToggle from 'salesforce-pageobjects/setup/pageObjects/expandableRenditionToggle'; import _StatefulCommonList from 'salesforce-pageobjects/lists/pageObjects/statefulCommonList'; import _ExpandableRenditionFooter from 'salesforce-pageobjects/setup/pageObjects/expandableRenditionFooter'; /** * 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/agenticListViewManagerPreview.utam.json * @version 2026-03-09T13:56:36.955Z * @author Salesforce */ declare class AgenticListViewManagerPreview extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that the ExpandableRendition Footer is present and visible * @return boolean */ isExpandableRenditionFooterVisible(): Promise; /** * Check that the ExpandableRendition toggle is present and visible * @return boolean */ isExpandableRenditionToggleVisible(): Promise; /** * Check that the card container is present and visible * @return boolean */ isAgenticListViewCardContainerVisible(): 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 "agenticListViewCardContainer" present on the page * @return boolean */ verifyAgenticListViewCardContainerPresence(): Promise; /** * The toggle button for drilling into an expandable component */ getExpandableRenditionToggle(): Promise<_ExpandableRenditionToggle | null>; /** * Represents the child list component that dynamically manages state and renders the list view */ getStatefulList(): Promise<_StatefulCommonList | null>; /** * The footer for a component which can be drilled into */ getExpandableRenditionFooter(): Promise<_ExpandableRenditionFooter | null>; } export = AgenticListViewManagerPreview;