/** * 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'; /** * Component that functions as a container for a group of buttons, allowing them to be slotted in and styled as a collective unit. * Selector: src-base-button-group * generated from JSON dist/feeds/chat/baseButtonGroup.utam.json * @version 2026-03-09T13:56:35.607Z * @author Salesforce */ export default class BaseButtonGroup extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the button group container is visible * @return boolean */ isButtonGroupContainerVisible(): Promise; /** * Check if the button group container is present in the DOM * @return boolean */ isButtonGroupContainerPresent(): Promise; /** * Represents the default slot for inserting button elements. */ getSlotDefaultContent(ContainerCtor: _ContainerCtor): Promise; }