/** * 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 _ButtonIcon from 'salesforce-pageobjects/lightning/pageObjects/buttonIcon'; /** * Component that toggles the expanded or collapsed state of a rendition using a button icon. * Selector: setup-expandable-rendition-toggle * generated from JSON dist/setup/expandableRenditionToggle.utam.json * @version 2026-03-09T13:56:37.010Z * @author Salesforce */ export default class ExpandableRenditionToggle extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that the expand toggle container is present and visible * @return boolean */ isExpandToggleVisible(): Promise; /** * Check if the expand toggle container is enabled * @return boolean */ isExpandToggleEnabled(): Promise; /** * Returns true if element "expandToggleContainer" present on the page * @return boolean */ verifyExpandToggleContainerPresence(): Promise; /** * Represents the Lightning button icon used for toggling the rendition state */ getToggleButtonIcon(): Promise<_ButtonIcon | null>; }