import { QuestionItem } from './Question'; interface CategoryProps { name: string; questionId?: string; questions: QuestionItem[]; } declare const Category: ({ questions, name, questionId, }: CategoryProps) => JSX.Element; export default Category;