/** * 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 _ViewComponent from 'salesforce-pageobjects/runtime_copilot_base/pageObjects/viewComponent'; /** * Component that processes and displays a list of messages, dynamically creating child components based on the message type. * Selector: setup-conversational-ui-drill-in-container * generated from JSON dist/setup/agenticSetupDrillInContainer.utam.json * @version 2026-03-09T13:56:36.973Z * @author Salesforce */ declare class AgenticSetupDrillInContainer extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that the main container is present and visible * @return boolean */ isComponentContainerVisible(): Promise; /** * Check that the bottom marker is present and visible * @return boolean */ isBottomMarkerVisible(): Promise; /** * Represents the dynamically created child components */ getDynamicComponents(): Promise<_ViewComponent[]>; } export = AgenticSetupDrillInContainer;