import { CardViewWebElementBase } from './CardViewWebElementBase'; import { SlotProxy } from '@oracle/oraclejet-webdriver'; /** /** * The component WebElement for [oj-c-card-view](../../jsdocs/oj-c.CardView.html). * Do not instantiate this class directly, instead, use * [findCardView](../modules.html#findCardView). */ export declare class CardViewWebElement extends CardViewWebElementBase { /** * Sets the value of "selected" property. * Specifies the current selected items in the listview. See the Help documentation for more information. * @param selected The value to set for "selected" * @override * @typeparam K Type of keys */ changeSelected(selected: Array): Promise; /** * Gets the value of "selected" property. * Retrieves the current selected items in the listview. See the Help documentation for more information. * @override * @typeparam K Type of keys * @return The value of "selected" property. */ getSelected(): Promise>; /** * Retrieve a SlotProxy which represents a single listview item. * @param key The key within the Collection's dataset associated with the item. */ findItem(itemLocator: { key: T; }): Promise; }