/** * 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, ContainerCtor as _ContainerCtor, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _MessageError from 'salesforce-pageobjects/feeds/chat/pageObjects/messageError'; /** * A chat interface that allows users to interact with an AI assistant, send messages, and receive recommendations. It includes an introduction message, a message history, typing status, error messages, and input for sending new messages. * Selector: feeds_assistant-assistant-panel-home-view * generated from JSON dist/feeds/assistant/assistantPanelHomeView.utam.json * @version 2026-03-09T13:56:35.594Z * @author Salesforce */ export default class AssistantPanelHomeView extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getRecommendLabel(): Promise<(_BaseUtamElement)>; /** * Represents the content of the header slot in the chat panel. */ getHeaderSlotContent(ContainerCtor: _ContainerCtor): Promise; /** * Represents the content of the error slot in the chat panel. */ getErrorSlotContent(ContainerCtor: _ContainerCtor): Promise; /** * Represents the error message component within the chat panel. */ getErrorMessage(): Promise<_MessageError | null>; }