/** * 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, ActionableUtamElement as _ActionableUtamElement, ClickableUtamElement as _ClickableUtamElement, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; /** * A component that acts as a modal dialog with a left rail for navigation and tabbed content for displaying different components based on the selected tab. * Selector: src-app-dev-panel * generated from JSON dist/devops/center/appdevPanel.utam.json * @version 2026-03-09T13:56:35.213Z * @author Salesforce */ declare class AppdevPanel extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Simulate a click on the backdrop to close the modal */ clickBackdrop(): Promise; /** * Check if the modal container is visible * @return boolean */ isModalContainerVisible(): Promise; /** * Check if the backdrop is visible * @return boolean */ isBackdropVisible(): Promise; /** * Returns true if element "backdrop" present on the page * @return boolean */ verifyBackdropPresence(): Promise; /** * Returns true if element "modalContainer" present on the page * @return boolean */ verifyModalContainerPresence(): Promise; /** * Represents the left rail navigation component */ getLeftRail(): Promise<(_BaseUtamElement)>; /** * Represents the "Agent Explorer" tab content */ getTabExplorer(): Promise<(_BaseUtamElement) | null>; /** * Represents the "View Changes" tab content */ getTabChangesContainer(): Promise<(_BaseUtamElement) | null>; } export = AppdevPanel;