/** * 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'; /** * Selector: lightning-stacked-tab * Represents the lightning-stacked-tab Lightning web component. * Gets the tab label or icon name, Click on the tab * generated from JSON dist/lightning/stackedTab.utam.json * @version 2026-03-09T13:56:36.236Z * @author Salesforce */ declare class StackedTab extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Gets the tab label */ getLabel(): Promise; /** * Perform click action on the tab */ clickTab(): Promise; /** * Gets the icon name displayed next to the tab label * @return string with icon name and Defaults to chevronright */ getIcon(): Promise; } export = StackedTab;