declare module "sap/esh/search/ui/attributerenderer/assembler/ControlAssembler" { import Control from "sap/ui/core/Control"; import { $SearchLinkSettings } from "sap/esh/search/ui/controls/SearchLink"; import { Assembler } from "sap/esh/search/ui/attributerenderer/assembler/Assembler"; enum ControlItemType { text = "text", other = "other" } interface ControlItem { type: ControlItemType; control: Control; } class ControlAssembler implements Assembler { items: Array; addText(text: string): void; addImage(src: string, styleClass?: string): void; addIcon(src: string): void; addLink(props: $SearchLinkSettings): void; addControl(control: Control): void; getResult(): Control; } } //# sourceMappingURL=ControlAssembler.d.ts.map