import { EventEmitter } from '../../stencil-public-runtime'; import { ButtonIconType } from '../../utils/icon-types'; export declare class BielSearchAskAiButton { resultTitle: string; resultFragment: string; isSelected: boolean; bielId: string; aiIcon: ButtonIconType; askAiClicked: EventEmitter<{ bielId: string; }>; handleKeyDown(event: KeyboardEvent): void; handleAskAiClick(): void; render(): any; }