/** * 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 } from '@utam/core'; /** * A component that groups buttons together and allows for slotting in custom button elements. * Selector: src-base-button-group * generated from JSON dist/runtime_copilot_base/baseButtonGroup.utam.json * @version 2026-03-09T13:56:37.215Z * @author Salesforce */ export default class BaseButtonGroup extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that button group is present and visible * @return boolean */ isButtonGroupVisible(): Promise; /** * Represents the default slot for custom button elements. */ getSlotDefaultContent(ContainerCtor: _ContainerCtor): Promise; }