/** * 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'; /** * A base button component that can be used across different parts of the application, with support for ARIA attributes and styling. * Selector: src-base-button * generated from JSON dist/feeds/chat/baseButton.utam.json * @version 2026-03-09T13:56:35.605Z * @author Salesforce */ export default class BaseButton extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Simulate a click action on the base button */ clickBaseButton(): Promise; /** * Check that the base button is present and visible * @return boolean */ isBaseButtonVisible(): Promise; /** * Check if the base button is enabled and can be interacted with * @return boolean */ isBaseButtonEnabled(): Promise; }