/** * 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 } from '@utam/core'; import _AgenticLayout from 'salesforce-pageobjects/runtime_copilot/pageObjects/agenticLayout'; import _PanelMessageInput from 'salesforce-pageobjects/app_dev_agent/pageObjects/panelMessageInput'; /** * Component that serves as a chat interface for the copilot panel, managing connection state and providing functionality for sending messages. * Selector: app_dev_agent-home-panel-chat-view * generated from JSON dist/app_dev_agent/homePanelChatView.utam.json * @version 2026-03-09T13:56:34.864Z * @author Salesforce */ declare class HomePanelChatView extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Represents the layout of the agent panel. */ getCopilotLayout(): Promise<_AgenticLayout>; /** * Represents the slot for the message input component. */ getMessageInputSlot(ContainerCtor: _ContainerCtor): Promise; /** * Represents the message input component for sending chat messages. */ getChatInput(): Promise<_PanelMessageInput>; } export = HomePanelChatView;