/** * 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'; /** * Toolbar component with left and right slots for custom content insertion. * Selector: src-app-toolbar * generated from JSON dist/ui/chatbots/components/appToolbar.utam.json * @version 2026-03-09T13:56:37.114Z * @author Salesforce */ export default class AppToolbar extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Represents the content of the named slot on the left side of the toolbar */ getLeftSlotContent(ContainerCtor: _ContainerCtor): Promise; /** * Represents the content of the named slot on the right side of the toolbar */ getRightSlotContent(ContainerCtor: _ContainerCtor): Promise; /** * Deactivate button in the toolbar */ getDeactivateButton(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; }