/** * 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 _Icon from 'salesforce-pageobjects/lightning/pageObjects/icon'; /** * Component that displays a page header with an icon and text. * Selector: setup-agentic-setup-page-header * generated from JSON dist/setup/agenticSetupPageHeader.utam.json * @version 2026-03-09T13:56:36.990Z * @author Salesforce */ export default class AgenticSetupPageHeader extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that header text is present and visible * @return boolean */ isHeaderTextVisible(): Promise; /** * Get text from the header * @return string */ getHeaderText(): Promise; /** * Represents the lightning icon with a class of "topic-icon" */ getIconElement(): Promise<_Icon>; }