UNPKG

analytica-frontend-lib

Version:

Repositório público dos componentes utilizados nas plataformas da Analytica Ensino

18 lines 717 B
import { HtmlHTMLAttributes } from 'react'; interface Choice { value: string; label: string; status?: 'correct' | 'incorrect' | 'neutral'; disabled?: boolean; } interface MultipleChoiceListProps extends HtmlHTMLAttributes<HTMLDivElement> { choices: Choice[]; disabled?: boolean; name?: string; selectedValues?: string[]; onHandleSelectedValues?: (values: string[]) => void; mode?: 'interactive' | 'readonly'; } declare const MultipleChoiceList: ({ disabled, className, choices, name, selectedValues, onHandleSelectedValues, mode, }: MultipleChoiceListProps) => import("react/jsx-runtime").JSX.Element; export { MultipleChoiceList }; //# sourceMappingURL=MultipleChoice.d.ts.map