/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; import _ButtonIcon from 'salesforce-pageobjects/lightning/pageObjects/buttonIcon'; import _ExplorerView from 'salesforce-pageobjects/applications/pageObjects/explorerView'; /** * Component representing a panel that displays relationship view information. It includes a header with a heading and a close button, and a body containing a custom explorer view component. The panel can be toggled open or closed. * Selector: dev_workspace-relationship-view-container * generated from JSON dist/dev/workspace/relationshipViewContainer.utam.json * @version 2026-03-09T13:56:35.196Z * @author Salesforce */ declare class RelationshipViewContainer extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the panel container is visible * @return boolean */ isPanelContainerVisible(): Promise; getRoot(): Promise<(_BaseUtamElement)>; /** * Represents the close button in the panel header */ getHeaderCloseButton(): Promise<_ButtonIcon>; /** * Represents the custom component used to display the explorer view */ getExplorerView(): Promise<_ExplorerView>; } export = RelationshipViewContainer;