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;
