import React from 'react';
import { RadioGroupProps } from './RadioGroup.types';
/**
 * Allow the user to select one item from a set
 */
declare const RadioGroup: React.FC<RadioGroupProps>;
export default RadioGroup;
