declare module "sap/esh/search/ui/attributerenderer/assembler/Assembler" { /*! * SAPUI5 * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. */ import Control from "sap/ui/core/Control"; import { $SearchLinkSettings } from "sap/esh/search/ui/controls/SearchLink"; type AssemblerConstructor = new () => Assembler; interface Assembler { addText(text: string): any; addImage(src: string, styleClass?: string): any; addIcon(src: string): any; addLink(props: $SearchLinkSettings): any; addControl(control: Control): any; getResult(): T; } } //# sourceMappingURL=Assembler.d.ts.map