/** * 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 _BaseIcon from 'salesforce-pageobjects/feeds/chat/pageObjects/baseIcon'; /** * Component that displays a message status with an icon and text content, intended for non-actionable error or success messages to the user. * Selector: src-message-status * generated from JSON dist/feeds/chat/messageStatus.utam.json * @version 2026-03-09T13:56:35.663Z * @author Salesforce */ declare class MessageStatus extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the status container is present and visible * @return boolean */ isStatusContainerVisible(): Promise; /** * Get the text content from the message status * @return string */ getMessageContentText(): Promise; /** * Check if the message content text is visible * @return boolean */ isMessageContentVisible(): Promise; /** * Represents the icon indicating the message status variant. */ getBaseIcon(): Promise<_BaseIcon>; } export = MessageStatus;