import React from 'react'; export type RadioValue = string | number | undefined; export type RadioProps = React.InputHTMLAttributes & { value?: RadioValue; label?: RadioValue; }; export declare const Radio: (props: RadioProps) => React.JSX.Element;