/** * 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/runtime_copilot_base/pageObjects/baseIcon'; /** * Component that displays a status message with an icon indicating the type of message (e.g., error), along with assistive text for accessibility. * Selector: src-message-status * generated from JSON dist/runtime_copilot_base/messageStatus.utam.json * @version 2026-03-09T13:56:37.294Z * @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 status message * @return string */ getStatusTextContent(): Promise; /** * Represents the icon associated with the message status. */ getStatusIcon(): Promise<_BaseIcon>; } export = MessageStatus;