///
import { RadioGroupProps } from 'antd/lib/radio';
interface RadioButtonProps extends Omit {
space?: string | number;
options: {
key?: any;
value?: any;
}[];
}
declare const RadioButton: (props: RadioButtonProps) => JSX.Element;
export default RadioButton;