/** * 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 _VerticalNavigationItemBadge from 'salesforce-pageobjects/lightning/pageObjects/verticalNavigationItemBadge'; /** * Selector: lightning-vertical-navigation-section. * Represents the lightning-vertical-navigation-section Lightning web component. * Get the label, all the vertical navigation items, the active item, an item by name, or an item by index. * generated from JSON dist/lightning/verticalNavigationSection.utam.json * @version 2026-03-09T13:56:36.278Z * @author Salesforce */ declare class VerticalNavigationSection extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get the header label * @return string */ getLabel(): Promise; getVerticalNavigationItemBadges(): Promise<_VerticalNavigationItemBadge[]>; } export = VerticalNavigationSection;