UNPKG

@makeen.io/material-ui-kit

Version:
16 lines (15 loc) 604 B
import React from "react"; declare type SurveyElementRadioGroupProps = { disabled?: boolean; mode?: any; name: string; onAddOption?: (e: React.MouseEvent<HTMLDivElement>) => void; onChange: Function; onOptionLabelUpdate?: Function; onRemoveOption?: Function; onReorderOption?: Function; options: any[]; value: any; }; declare const SurveyElementRadioGroup: ({ value, name, onChange, options, onOptionLabelUpdate, onRemoveOption, onReorderOption, onAddOption, mode, disabled, }: SurveyElementRadioGroupProps) => JSX.Element; export default SurveyElementRadioGroup;