interface SubQuestionsProps {
    metadata: string[];
    handleClickSuggestion: (value: string) => void;
}
declare const SubQuestions: React.FC<SubQuestionsProps>;
export default SubQuestions;
