import { QuestionAnswerValue, QuestionJson, QuestionResult } from './schema'; export declare function gradeQuestion(question: QuestionJson, answer: QuestionAnswerValue | undefined): QuestionResult; export declare function gradeQuestions(questions: QuestionJson[], answers: QuestionAnswers): QuestionResult[];