/** * 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, ContainerCtor as _ContainerCtor, UtamBasePageObject as _UtamBasePageObject, BaseUtamElement as _BaseUtamElement, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; /** * Selector: runtime_copilot_base-base-button-complete * A button component that indicates a complete state with optional loading and disabled states, and can display custom labels based on its state. * generated from JSON dist/runtime_copilot_base/baseButtonComplete.utam.json * @version 2026-03-09T13:56:37.212Z * @author Salesforce */ export default class BaseButtonComplete extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Retrieves the text from the button label * @return string */ getButtonLabel(): Promise; /** * Represents the content of the loading slot. */ getLoadingSlotContent(ContainerCtor: _ContainerCtor): Promise; /** * Represents the copilot base button component. */ getBaseButton(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; /** * Represents the icon indicating the completed state. */ getCompletedIcon(): Promise<(_BaseUtamElement)>; }