/** * 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'; /** * A chat message panel layout component that includes a disclaimer section and a chat history section, with functionality to handle resizing of the chat history. * Selector: src-message-layout * generated from JSON dist/feeds/chat/messageLayout.utam.json * @version 2026-03-09T13:56:35.658Z * @author Salesforce */ export default class MessageLayout extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that chat history area is present and visible * @return boolean */ isChatHistoryVisible(): Promise; /** * Check that chat history area is present in the DOM * @return boolean */ isChatHistoryPresent(): Promise; waitForChatHistory(): Promise<(_BaseUtamElement)>; /** * Represents the content of the named slot for disclaimers. */ getDisclaimerSlot(ContainerCtor: _ContainerCtor): Promise; /** * Represents the default slot content for chat messages. */ getChatHistorySlot(ContainerCtor: _ContainerCtor): Promise; }