/** * 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, BaseUtamElement as _BaseUtamElement, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _RailPanelTopics from 'salesforce-pageobjects/ui/chatbots/components/pageObjects/railPanelTopics'; /** * Component that manages a stack of views, allowing push and pop operations for navigation, and animates transitions between views. * Selector: src-base-view-drillin * generated from JSON dist/ui/chatbots/components/baseViewDrillin.utam.json * @version 2026-03-09T13:56:37.120Z * @author Salesforce */ declare class BaseViewDrillin extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the side panel view is present and visible * @return boolean */ isSidePanelVisible(): Promise; waitForSidePanelView(): Promise<(_BaseUtamElement)>; /** * Represents the list of left-rail view topic that are conditionally rendered. */ getRailPanelTopic(): Promise<_RailPanelTopics[]>; } export = BaseViewDrillin;