export type CommonQuestionsSection = { id: string; title: string; questions: CommonQuestions[]; iconPath: string; }; export type CommonQuestions = { id: string; question: string; answer: string; isClosed?: boolean; };