import * as React from "react"; import { PerseusI18nContext } from "../../components/i18n-context"; import type { APIOptions } from "../../types"; export type ANSWER_BAR_STATES = "ACTIVE" | "INACTIVE" | "INCORRECT" | "CORRECT"; type Props = { answerBarState: ANSWER_BAR_STATES; apiOptions: APIOptions; onCheckAnswer: () => unknown; onNextQuestion?: () => unknown; }; declare class GradedGroupAnswerBar extends React.Component { static contextType: React.Context; context: React.ContextType; render(): React.ReactNode; } export default GradedGroupAnswerBar;