import { Section } from '../../../types';
export declare function multipleChoiceQuestion({ quiz }: {
    quiz: Section;
}): string;
export declare function matchingQuestion({ quiz }: {
    quiz: Section;
}): string;
export declare function numericalQuestion({ quiz }: {
    quiz: Section;
}): string;
export declare function multipleAnswersQuestion({ quiz }: {
    quiz: Section;
}): string;
export declare function shortAnswerQuestion({ quiz }: {
    quiz: Section;
}): string;
export declare function textOnlyQuestion({ quiz }: {
    quiz: Section;
}): string;
