export interface QuizzType { prompts: Array, } export interface PromptType { text: string, id: string, is_correct: boolean, file_name?: string, }