import { AnswerMatchType } from './answer-match-type.enum'; import { QuestionOption } from './question-option'; import { QuestionType } from './question-type.enum'; import { RichText } from './rich-text'; export declare class QuestionContent { analysis: RichText; answer: string; answerMatchType: AnswerMatchType; id: number; idx: number; options: QuestionOption[]; qusStem: RichText; type: QuestionType; blankNum?: number; score: number; needRemoved: boolean; constructor(type?: QuestionType); }