/** * 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, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _Icon from 'salesforce-pageobjects/lightning/pageObjects/icon'; import _Skeleton from 'salesforce-pageobjects/app_dev_agent/pageObjects/skeleton'; import _PanelMessageInput from 'salesforce-pageobjects/app_dev_agent/pageObjects/panelMessageInput'; /** * Component that represents a chat panel with an agent icon and a message input area, displaying a skeleton text loader indicating that the chat is loading or not yet active. * Selector: app_dev_agent-chat-panel-empty-state * generated from JSON dist/app_dev_agent/chatPanelEmptyState.utam.json * @version 2026-03-09T13:56:34.841Z * @author Salesforce */ declare class ChatPanelEmptyState extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that chat container is present and visible * @return boolean */ isChatContainerVisible(): Promise; /** * Represents the AI App Dev Agent icon in the chat panel. */ getAgentIcon(): Promise<_Icon>; /** * Represents the skeleton text loader indicating chat is loading. */ getSkeletonTextLoader(): Promise<_Skeleton>; /** * Represents the message input area of the chat panel. */ getMessageInputArea(): Promise<_PanelMessageInput>; } export = ChatPanelEmptyState;