import { Answer, Choice, Match } from '../../../../types';
export declare function multipleChoiceQuestionAnswer({ choices, score, }: {
    choices?: Choice[];
    score: number;
}): string;
export declare function numericalQuestionAnswer({ answers, answerId, }: {
    answers?: Answer[];
    answerId: string;
}): string;
export declare function multipleAnswersQuestionAnswer({ choices, score, }: {
    choices?: Choice[];
    score: number;
}): string;
export declare function shortAnswerQuestionAnswer({ answers }: {
    answers?: Answer[];
}): string;
export declare function matchingQuestionAnswer({ matches }: {
    matches?: Match[];
}): string;
