/** * 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, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _Icon from 'salesforce-pageobjects/lightning/pageObjects/icon'; /** * Selector: lightning-vertical-navigation-item-icon * Represents the lightning-vertical-navigation-item-icon Lightning web component. * An item icon inside the vertical navigation * generated from JSON dist/lightning/verticalNavigationItemIcon.utam.json * @version 2026-03-09T13:56:36.274Z * @author Salesforce */ declare class VerticalNavigationItemIcon extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if item is marked as active */ isActive(): Promise; /** * Get the text inside the item */ getText(): Promise; /** * Click on the item */ click(): Promise; getIcon(): Promise<_Icon>; } export = VerticalNavigationItemIcon;