import { EventEmitter } from '../../stencil-public-runtime'; export declare class BielSuggestedQuestions { heading: string; questions: string[]; bielId: string; suggestedQuestionClick: EventEmitter<{ bielId: string; message: string; }>; scrollToBottom: EventEmitter<{ bielId: string; }>; handleQuestionClick(question: string): void; render(): any; }