/** * @license * Copyright 2023 Nuraly, Laabidi Aymen * SPDX-License-Identifier: MIT */ import { TemplateResult, nothing } from 'lit'; import { ChatbotSuggestion, ChatbotI18n } from '../chatbot.types.js'; export interface SuggestionTemplateHandlers { onClick: (suggestion: ChatbotSuggestion) => void; onKeydown: (e: KeyboardEvent) => void; } export declare function renderSuggestion(suggestion: ChatbotSuggestion, handlers: SuggestionTemplateHandlers, i18n: ChatbotI18n): TemplateResult; export declare function renderSuggestions(_chatStarted: boolean, suggestions: ChatbotSuggestion[], handlers: SuggestionTemplateHandlers, i18n: ChatbotI18n): TemplateResult | typeof nothing; //# sourceMappingURL=suggestion.template.d.ts.map