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