UNPKG

education-module-ai

Version:
15 lines (14 loc) 423 B
import React from 'react'; interface AnswerResponse { answer: string; relatedConcepts: string[]; furtherReadings?: string[]; } export interface AnswerQuestionComponentProps { title?: string; description?: string; onAnswer?: (question: string, answer: AnswerResponse) => void; className?: string; } export declare const AnswerQuestionComponent: React.FC<AnswerQuestionComponentProps>; export {};