/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; import _ListContent from 'salesforce-pageobjects/lists/pageObjects/listContent'; /** * Selector: .flexipageComponent[data-component-id='flexipage_filterListCard']. * Represents the filter list card Flexipage component. * Access the list contents. * generated from JSON dist/lists/listCardList.utam.json * @version 2026-03-09T13:56:36.337Z * @author Salesforce */ export default class ListCardList extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getListContent(): Promise<_ListContent>; }