/** * 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, BaseUtamElement as _BaseUtamElement, ActionableUtamElement as _ActionableUtamElement, DraggableUtamElement as _DraggableUtamElement } from '@utam/core'; import _Icon from 'salesforce-pageobjects/lightning/pageObjects/icon'; /** * Component that displays a resizable right panel with a draggable handle and a slot for content. * Selector: src-right-panel * generated from JSON dist/builder_platform_interaction/rightPanel.utam.json * @version 2026-03-09T13:56:35.151Z * @author Salesforce */ declare class RightPanel extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the panel content area is visible * @return boolean */ isPanelVisible(): Promise; /** * Get a specific attribute from the panel content area * @return string */ getPanelAttribute(attrName: string): Promise; /** * Returns true if element "draggableArea" present on the page * @return boolean */ verifyDraggableAreaPresence(): Promise; /** * Represents the drag icon within the draggable area */ getDragIcon(): Promise<_Icon | null>; /** * Represents the slot for nested content */ getSlotContent(ContainerCtor: _ContainerCtor): Promise; } export = RightPanel;