import React from 'react'; import RadioOptionType from './RadioOptionType'; export interface RadioGroupProps { className?: string | null; classNameLabel?: string | null; labelStyle?: object; name: string; options: RadioOptionType[]; style?: object; } declare const RadioButtonGroup: React.FC; export default RadioButtonGroup;