import { QuestionBaseProps, QuestionOption } from './types'; export interface SingleChoiceProps extends QuestionBaseProps { options: QuestionOption[]; value: string | null; onChange: (id: string) => void; /** Option ids that are correct — used only when `feedback` is set for styling */ correctAnswer?: string; } export declare const SingleChoice: ({ platform, interaction, stem, hint, number, options, value, onChange, disabled, feedback, correctAnswer, className, "aria-label": ariaLabel, }: SingleChoiceProps) => import("react").JSX.Element;