/** * 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, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; /** * A basic button component with accessibility features that can be clicked by the user. * Selector: src-base-button * generated from JSON dist/runtime_copilot_base/baseButton.utam.json * @version 2026-03-09T13:56:37.211Z * @author Salesforce */ export default class BaseButton extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Represents the basic button that can be interacted with by clicking. */ getBaseButton(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; /** * Represents the basic button that can be interacted with by clicking. */ getButton(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; }