/** * 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'; /** * The component serves as a runtime_copilot_base-view-vertical-layout * Selector: runtime_copilot_base-view-vertical-layout * generated from JSON dist/runtime_copilot_base/viewVerticalLayout.utam.json * @version 2026-03-09T13:56:37.372Z * @author Salesforce */ export default class ViewVerticalLayout extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Represents the chat view component resolved dynamically based on message content. */ getViewComponent(): Promise<_ViewComponent | null>; /** * Represents the chat view components resolved dynamically based on message content. */ getViewComponents(): Promise<_ViewComponent[] | null>; getViewComponentByIndex(index: number): Promise<_ViewComponent | null>; }