/** * 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, ActionableUtamElement as _ActionableUtamElement, ClickableUtamElement as _ClickableUtamElement, DraggableUtamElement as _DraggableUtamElement, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _Icon from 'salesforce-pageobjects/lightning/pageObjects/icon'; /** * Component that displays a floating button which can be dragged and clicked to open a side panel. * Selector: setup-agentic-setup-floating-button * generated from JSON dist/setup/agenticSetupFloatingButton.utam.json * @version 2026-03-09T13:56:36.976Z * @author Salesforce */ declare class AgenticSetupFloatingButton extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that floating button container is present and visible * @return boolean */ isFloatingButtonContainerVisible(): Promise; /** * Click the floating button */ clickFloatingButton(): Promise; /** * Check that floating button is present and visible * @return boolean */ isFloatingButtonVisible(): Promise; /** * Get text from the button label * @return string */ getButtonLabelText(): Promise; /** * Returns true if element "floatingButton" present on the page * @return boolean */ verifyFloatingButtonPresence(): Promise; /** * Represents the drag icon within the floating button */ getDragIcon(): Promise<_Icon | null>; /** * Represents the agentic icon within the floating button */ getAgenticIcon(): Promise<_Icon | null>; } export = AgenticSetupFloatingButton;