import { FileData } from "../../Shared/FileData"; import { ClosedQuestionContent } from "./ClosedQuestionContent"; import { FreeAnswerQuestionContent } from "./FreeAnswerQuestionContent"; import { MatchingQuestionContent } from "./MatchingQuestionContent"; export declare class Question { id: string; text?: string; index?: number; closedContent?: ClosedQuestionContent; freeAnswerContent?: FreeAnswerQuestionContent; matchingContent?: MatchingQuestionContent; questionType?: string; answerNote?: string; weight?: number; fileData?: Partial; isSkipped?: boolean; isValid?: boolean; }