/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; import _AppdevPanel from 'salesforce-pageobjects/devops/center/pageObjects/appdevPanel'; import _PanelButton from 'salesforce-pageobjects/devops/center/pageObjects/panelButton'; /** * Component that represents a navigation bar with buttons, organization information, view changes, a dropdown menu, notifications, and a sliding panel for application development. * Selector: src-base-component * generated from JSON dist/devops/center/baseComponent.utam.json * @version 2026-03-09T13:56:35.215Z * @author Salesforce */ declare class BaseComponent extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); waitForAppDevPanel(): Promise<_AppdevPanel>; /** * Represents the button that toggles the side panel */ getPanelButton(): Promise<_PanelButton>; /** * Represents the display of organization information */ getOrgInfo(): Promise<(_BaseUtamElement)>; /** * Represents the button to view changes */ getViewChangesButton(): Promise<(_BaseUtamElement)>; /** * Represents the dropdown menu on the navigation bar */ getPanelDropdown(): Promise<(_BaseUtamElement)>; /** * Represents the notification popover element */ getNotificationPopover(): Promise<(_BaseUtamElement)>; /** * Represents the sliding panel for application development */ getAppDevPanel(): Promise<_AppdevPanel | null>; } export = BaseComponent;