/** * 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, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; import _Pill from 'salesforce-pageobjects/lightning/pageObjects/pill'; /** * Selector: lightning-pill-container * Represents the lightning-pill-container Lightning web component. * Get all the pills from the container. * generated from JSON dist/lightning/pillContainer.utam.json * @version 2026-03-09T13:56:36.179Z * @author Salesforce */ declare class PillContainer extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get all the pill labels from the pill container. * @return string[] */ getAllPillLabels(): Promise; /** * Delete all the selected records from the pill container. * @return none */ deleteAllPills(): Promise; /** * Delete the selected record from the pill container. * @return none */ deleteByIndex(index: number): Promise; getAllPills(): Promise<_Pill[]>; getMoreButton(): Promise<(_BaseUtamElement & _ClickableUtamElement) | null>; } export = PillContainer;