/** * 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, BaseUtamElement as _BaseUtamElement, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; /** * Component that extends a base chat input functionality to include an expandable text area and an AI disclaimer for a panel message input. * Selector: app_dev_agent-panel-message-input * generated from JSON dist/app_dev_agent/panelMessageInput.utam.json * @version 2026-03-09T13:56:34.873Z * @author Salesforce */ export default class PanelMessageInput extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Simulate a click on the expandable text area */ clickExpandableTextArea(): Promise; /** * Clear the text area and type new text */ enterTextInExpandableTextArea(text: string): Promise; /** * Get the current text from the expandable text area * @return string */ getTextFromExpandableTextArea(): Promise; /** * Check if the AI disclaimer is visible * @return boolean */ isAIDisclaimerVisible(): Promise; /** * Returns true if element "aiDisclaimer" present on the page * @return boolean */ verifyAiDisclaimerPresence(): Promise; waitForAiDisclaimer(): Promise<(_BaseUtamElement)>; }