/** * 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 _Button from 'salesforce-pageobjects/lightning/pageObjects/button'; /** * Component that displays a footer with a button, which is conditionally visible based on context and state. * Selector: setup-expandable-rendition-footer * generated from JSON dist/setup/expandableRenditionFooter.utam.json * @version 2026-03-09T13:56:37.008Z * @author Salesforce */ declare class ExpandableRenditionFooter extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that footer container is present and visible * @return boolean */ isFooterVisible(): Promise; /** * Check that footer container is present in the DOM * @return boolean */ isFooterPresent(): Promise; /** * Returns true if element "footerContainer" present on the page * @return boolean */ verifyFooterContainerPresence(): Promise; /** * Represents the button inside the footer, which triggers an event when clicked */ getFooterButton(): Promise<_Button | null>; } export = ExpandableRenditionFooter;