/** * 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, ContainerCtor as _ContainerCtor, UtamBasePageObject as _UtamBasePageObject, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; import _Icon from 'salesforce-pageobjects/lightning/pageObjects/icon'; /** * Component that displays a page header with an icon, title, optional description, and optional right-aligned controls. * Selector: setup_platform_unifiedapp-salesforce-studio-page-header * generated from JSON dist/applications/salesforceStudioPageHeader.utam.json * @version 2026-03-09T13:56:34.950Z * @author Salesforce */ declare class SalesforceStudioPageHeader extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that the main grid layout of the header is present and visible * @return boolean */ isHeaderGridVisible(): Promise; /** * Check that the title text is present and visible * @return boolean */ isTitleTextVisible(): Promise; /** * Get the text of the header title * @return string */ getTitleText(): Promise; /** * Check that the description text is present and visible * @return boolean */ isDescriptionTextVisible(): Promise; /** * Get the text of the description * @return string */ getDescriptionText(): Promise; /** * Returns true if element "descriptionText" present on the page * @return boolean */ verifyDescriptionTextPresence(): Promise; getRoot(): Promise<(_BaseUtamElement)>; /** * Represents the slot for overriding the icon */ getIconSlot(ContainerCtor: _ContainerCtor): Promise; /** * Represents the default icon inside the icon slot */ getDefaultIcon(): Promise<_Icon>; /** * Represents the slot for right-aligned controls */ getRightSlot(ContainerCtor: _ContainerCtor): Promise; } export = SalesforceStudioPageHeader;