/** * 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'; /** * Selector: lightning-vertical-navigation-overflow * Represents the lightning-vertical-navigation-overflow Lightning web component. * Allows you to get hidden items from inside the overflow * generated from JSON dist/lightning/verticalNavigationOverflow.utam.json * @version 2026-03-09T13:56:36.276Z * @author Salesforce */ declare class VerticalNavigationOverflow extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Return whether or not the overflow is shown */ isShown(): Promise; /** * Clicks the Overflow */ click(): Promise; getRoot(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; getShownOverflow(): Promise<(_BaseUtamElement) | null>; getOverflowButton(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; } export = VerticalNavigationOverflow;