declare module "sap/esh/search/ui/controls/basket/SearchBasketAddButton" { /*! * SAPUI5 * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. */ import { MetadataOptions } from "sap/ui/base/ManagedObject"; import Button, { $ButtonSettings } from "sap/m/Button"; /** * Add selected result items to basket * */ /** * Constructs a new SearchBasketAddButton to display a button to add result items to the search basket. * * @param {string} [sId] ID for the new control, generated automatically if no ID is given * * @class * * This is the SAPUI5 search basket button control to display a button to add result items to the search basket. * Use in combination with control SearchCompositeControl by the Enterprise Search Team. * * @extends sap.m.OverflowToolbarButton * * @author SAP SE * @version 1.150.1 * * @see https://help.sap.com/viewer/691cb949c1034198800afde3e5be6570/2.0.08/en-US/ce86ef2fd97610149eaaaa0244ca4d36.html SAP HANA Search Developer Guide * @see https://help.sap.com/docs/SAP_S4HANA_ON-PREMISE/90b263323d0a4976bcda415e6bd20ea4/d93d53ef27074bbf9a4849c4a4c3e360.html Enterprise Search in SAP S/4HANA * * * @constructor * @public * @alias sap.esh.search.ui.controls.basket.SearchBasketAddButton * @since 1.143.0 * @name sap.esh.search.ui.controls.basket.SearchBasketAddButton * */ /** * @namespace sap.esh.search.ui.controls */ export default class SearchBasketAddButton extends Button { static readonly metadata: MetadataOptions; constructor(sId?: string, settings?: $ButtonSettings); static renderer: { apiVersion: number; }; } } //# sourceMappingURL=SearchBasketAddButton.d.ts.map