/** * 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, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _FormattedRichText from 'salesforce-pageobjects/lightning/pageObjects/formattedRichText'; /** * Component that displays text with a typewriter animation effect, queuing incoming text values and animating them sequentially. * Selector: app_dev_agent-content-stream * generated from JSON dist/app_dev_agent/contentStream.utam.json * @version 2026-03-09T13:56:34.848Z * @author Salesforce */ export default class ContentStream extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that streaming text container is present and visible * @return boolean */ isStreamingTextVisible(): Promise; /** * Check if a specific text chunk is visible * @return boolean[] */ isTextChunkVisible(): Promise; /** * Returns true if element "breakElements" present on the page * @return boolean[] */ verifyBreakElementsPresence(): Promise; /** * Returns true if element "textChunks" present on the page * @return boolean[] */ verifyTextChunksPresence(): Promise; /** * Represents the rich text component displaying static text */ getFormattedRichText(): Promise<_FormattedRichText>; }