/** * 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, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _Skeleton from 'salesforce-pageobjects/app_dev_agent/pageObjects/skeleton'; import _ContentStream from 'salesforce-pageobjects/app_dev_agent/pageObjects/contentStream'; /** * Component that displays an executive summary section with a skeleton loader during data loading, and a content stream with optional animation when content is available. * Selector: app_dev_agent-executive-summary-section * generated from JSON dist/app_dev_agent/executiveSummarySection.utam.json * @version 2026-03-09T13:56:34.861Z * @author Salesforce */ declare class ExecutiveSummarySection extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the section title container is visible * @return boolean */ isSectionTitleVisible(): Promise; /** * Check if the heading element is visible * @return boolean */ isHeadingVisible(): Promise; /** * Get the text content of the heading element * @return string */ getHeadingText(): Promise; /** * Check if the content container is visible * @return boolean */ isContentContainerVisible(): Promise; /** * Check if the content wrapper is focused * @return boolean */ isContentWrapperFocused(): Promise; /** * Move to the content wrapper element */ moveToContentWrapper(): Promise; /** * Returns true if element "contentWrapper" present on the page * @return boolean */ verifyContentWrapperPresence(): Promise; waitForLoadingSkeleton(): Promise<_Skeleton>; waitForContentWrapper(): Promise<(_BaseUtamElement & _ActionableUtamElement)>; waitForContentStream(): Promise<_ContentStream>; /** * Represents the skeleton loader displayed while the summary is being loaded. */ getLoadingSkeleton(): Promise<_Skeleton | null>; /** * Represents the content stream component displaying the executive summary. */ getContentStream(): Promise<_ContentStream | null>; } export = ExecutiveSummarySection;