/** * 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'; /** * A component that displays an error message with an icon and provides a link to refresh the page. * Selector: src-message-error * generated from JSON dist/feeds/chat/messageError.utam.json * @version 2026-03-09T13:56:35.657Z * @author Salesforce */ declare class MessageError extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the status container is visible * @return boolean */ isStatusContainerVisible(): Promise; /** * Return the text of the error message * @return string */ getErrorMessage(): Promise; /** * Simulate a click on the refresh page link */ clickRefreshPage(): Promise; /** * Represents the icon indicating the message status. */ getBaseIcon(): Promise<_BaseIcon>; } export = MessageError;