/** * 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 _ButtonIcon from 'salesforce-pageobjects/lightning/pageObjects/buttonIcon'; /** * Component that represents a panel header with an optional back button and an icon, used for navigating back and displaying a title with an icon. * Selector: src-panel-header * generated from JSON dist/builder_platform_interaction/panelHeader.utam.json * @version 2026-03-09T13:56:35.149Z * @author Salesforce */ export default class PanelHeader extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Gets the text of the header title * @return string */ getHeaderTitleText(): Promise; /** * Checks if the header title is present and visible * @return boolean */ isHeaderTitleVisible(): Promise; /** * Represents the optional back button for navigation */ getBackButton(): Promise<_ButtonIcon | null>; }