/**
 * Question status enum for student activity correction
 * Maps from ANSWER_STATUS to a simpler status for UI display
 */
export declare const QUESTION_STATUS: {
    readonly CORRETA: "CORRETA";
    readonly INCORRETA: "INCORRETA";
    readonly EM_BRANCO: "EM_BRANCO";
    /** Reserved for future use - pending teacher evaluation for essay questions */
    readonly PENDENTE: "PENDENTE";
};
export type QuestionStatus = (typeof QUESTION_STATUS)[keyof typeof QUESTION_STATUS];
//# sourceMappingURL=constants.d.ts.map