/** * 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'; /** * Component that displays a typing animation with status messages and decorative stars. * Selector: src-stream-status * generated from JSON dist/runtime_copilot_base/streamStatus.utam.json * @version 2026-03-09T13:56:37.342Z * @author Salesforce */ export default class StreamStatus extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Retrieves the current status text from the component * @return string */ getStatusText(): Promise; /** * Checks if the status container is visible * @return boolean */ isStatusContainerVisible(): Promise; /** * Checks if the assistive text is present (for accessibility) * @return boolean */ isAssistiveTextPresent(): Promise; /** * Returns true if element "star1" present on the page * @return boolean */ verifyStar1Presence(): Promise; /** * Returns true if element "star2" present on the page * @return boolean */ verifyStar2Presence(): Promise; /** * Returns true if element "star3" present on the page * @return boolean */ verifyStar3Presence(): Promise; /** * Returns true if element "assistiveTextElement" present on the page * @return boolean */ verifyAssistiveTextElementPresence(): Promise; }