/** * 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, ContainerCtor as _ContainerCtor, UtamBasePageObject as _UtamBasePageObject, BaseUtamElement as _BaseUtamElement } from '@utam/core'; /** * Component that displays a message with configurable alignment and can either show plain text content or custom content via a slot. * Selector: src-output-text * generated from JSON dist/feeds/chat/outputText.utam.json * @version 2026-03-09T13:56:35.674Z * @author Salesforce */ declare class OutputText extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the message container is visible * @return boolean */ isMessageContainerVisible(): Promise; /** * Retrieve the text content of the message * @return string * @param selectorStr CSS selector parameter */ getMessageText(selectorStr: string): Promise; /** * Returns true if element "messageContainer" present on the page * @return boolean */ verifyMessageContainerPresence(): Promise; /** * Represents the default slot for custom content. */ getDefaultSlotContent(ContainerCtor: _ContainerCtor): Promise; } export = OutputText;