/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; import _CardView from 'salesforce-pageobjects/dev/workspace/pageObjects/cardView'; /** * Component that displays a list of workspace cards with project details. The list can be limited by a maximum number of cards. * Selector: dev_workspace-card-view-list * generated from JSON dist/dev/workspace/cardViewList.utam.json * @version 2026-03-09T13:56:35.168Z * @author Salesforce */ declare class CardViewList extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the workspace cards container is visible * @return boolean */ isWorkspaceCardsContainerVisible(): Promise; getRoot(): Promise<(_BaseUtamElement)>; /** * Represents individual workspace cards within the container. */ getWorkspaceCard(): Promise<_CardView[]>; } export = CardViewList;