import type { SearchEngine } from '../../app/search-engine/search-engine.js'; /** * @internal */ interface SmartSnippetInteractiveQuestionsOptions { selectionDelay?: number; } /** * @internal */ interface SmartSnippetInteractiveQuestionsProps { options?: SmartSnippetInteractiveQuestionsOptions; } /** * @internal */ interface SmartSnippetInteractiveQuestions { selectSource(questionAnswerId: string): void; beginDelayedSelectSource(questionAnswerId: string): void; cancelPendingSelectSource(questionAnswerId: string): void; } /** * @internal */ export declare function buildSmartSnippetInteractiveQuestions(engine: SearchEngine, props?: SmartSnippetInteractiveQuestionsProps): SmartSnippetInteractiveQuestions; export {};