/** * 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'; /** * A button component that allows the user to navigate to a specified URL in a new tab when clicked, with the button being disabled if no URL is provided. * Selector: app_dev_agent-metadata-navigation * generated from JSON dist/app_dev_agent/metadataNavigation.utam.json * @version 2026-03-09T13:56:34.868Z * @author Salesforce */ declare class MetadataNavigation extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Return the disabled state of the navigate button * @return string */ isNavigateButtonDisabled(attrName: string): Promise; } export = MetadataNavigation;