/** * 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'; /** * Component that manages message actions and states, including success and error handling, within a chat interface. It allows for the creation of messages, execution of actions, and normalization of message formats based on predefined schemas and types. * Selector: src-message-library * generated from JSON dist/feeds/chat/messageLibrary.utam.json * @version 2026-03-09T13:56:35.660Z * @author Salesforce */ export default class MessageLibrary extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Simulate a click on the message action event * @param selectorStr CSS selector parameter */ clickMessageActionEvent(selectorStr: string): Promise; /** * Check if the message action event is visible * @return boolean * @param selectorStr CSS selector parameter */ isMessageActionEventVisible(selectorStr: string): Promise; }