/** * 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 extends base chat input functionality with a text area for user input and an optional static input mode. * Selector: setup-agentic-setup-home-chat-input * generated from JSON dist/setup/agenticSetupHomeChatInput.utam.json * @version 2026-03-09T13:56:36.984Z * @author Salesforce */ declare class AgenticSetupHomeChatInput extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that disclaimer text is present and visible * @return boolean */ isDisclaimerVisible(): Promise; /** * Check if textarea is enabled * @return boolean */ isTextAreaEnabled(): Promise; /** * Clear text area and enter string */ enterText(text: string): Promise; /** * Get text from text area * @return string */ getText(): Promise; /** * Click on the text area */ clickTextArea(): Promise; /** * Focus on the text area */ focusTextArea(): Promise; /** * Returns true if element "disclaimerText" present on the page * @return boolean */ verifyDisclaimerTextPresence(): Promise; waitForDisclaimerText(): Promise<(_BaseUtamElement)>; /** * Represents the content of the named slot with input data */ getInputContent(ContainerCtor: _ContainerCtor): Promise; } export = AgenticSetupHomeChatInput;