/** * 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'; /** * A container component that processes messages with type and data, retrieves the associated ES types, and renders the content using a child component based on the message type. * Selector: app_dev_agent-view-container * generated from JSON dist/app_dev_agent/viewContainer.utam.json * @version 2026-03-09T13:56:34.917Z * @author Salesforce */ export default class ViewContainer extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); waitForViewComponent(): Promise<_ViewComponent>; /** * Represents the base view component that renders the UI based on the processed messages. */ getViewComponent(): Promise<_ViewComponent>; }