/** * 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, PageObjectCtor as _PageObjectCtor } from '@utam/core'; import _RailPanelTopicsSuite from 'salesforce-pageobjects/ui/chatbots/components/pageObjects/railPanelTopicsSuite'; /** * Component that serves as a container for dynamically loaded sub-components that can be interacted with, including a view component and a list of left-rail view components. It supports actions such as navigating back and opening subviews. * Selector: src-left-rail-view-component * generated from JSON dist/ui/chatbots/components/leftRailViewComponent.utam.json * @version 2026-03-09T13:56:37.148Z * @author Salesforce */ export default class LeftRailViewComponent extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); waitForDynamicViewComponent(pageObjectType: _PageObjectCtor): Promise; /** * Represents the dynamic view component that is loaded based on certain conditions. */ getDynamicViewComponent(ContainerCtor: _ContainerCtor): Promise; /** * Represents the list of left-rail view topic suite that are conditionally rendered. */ getRailPanelTopicSuite(): Promise<_RailPanelTopicsSuite[]>; }