export declare class McqOptions { body: string; constructor(body: string); } export interface McqData { question: string; options: Array; answer?: string; learningOutcome?: string; complexityLevel?: string; maxScore?: number; } export interface McqConfig { templateId?: string; numberOfOptions?: number; maximumOptions?: number; } export declare class McqForm { question: string; options: Array; templateId: string; answer: string; learningOutcome: any; complexityLevel: any; maxScore: any; numberOfOptions: any; maximumOptions: any; constructor({ question, options, answer, learningOutcome, complexityLevel, maxScore }: McqData, { templateId, numberOfOptions, maximumOptions }: McqConfig); addOptions(): void; deleteOption(position: any): void; } //# sourceMappingURL=McqForm.d.ts.map