/** * 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, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _BaseButtonComplete from 'salesforce-pageobjects/feeds/chat/pageObjects/baseButtonComplete'; import _BaseIcon from 'salesforce-pageobjects/feeds/chat/pageObjects/baseIcon'; /** * A button component that can display different states such as disabled, completed, or loading. It can be used to trigger actions in a chat interface and has the ability to be repeatable. * Selector: src-view-action-button * generated from JSON dist/feeds/chat/viewActionButton.utam.json * @version 2026-03-09T13:56:35.698Z * @author Salesforce */ export default class ViewActionButton extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Represents the main action button with dynamic states based on user interaction. */ getActionButton(): Promise<_BaseButtonComplete>; /** * Represents the loading icon that appears within the action button. */ getLoadingIcon(): Promise<_BaseIcon>; }