import { QuestionOption, QuestionPlatform } from './types'; export type QuestionOptionMode = "single" | "multiple"; export interface QuestionOptionListProps { platform: QuestionPlatform; mode: QuestionOptionMode; name: string; options: QuestionOption[]; /** Selected option id(s) */ value: string | string[] | null; onChange: (value: string, checked: boolean) => void; disabled?: boolean; /** Per-option result after submit: id -> correct | incorrect | undefined */ optionStatus?: Record; legend?: string; className?: string; } export declare const QuestionOptionList: ({ platform, mode, name, options, value, onChange, disabled, optionStatus, legend, className, }: QuestionOptionListProps) => import("react").JSX.Element;