import React from 'react'; import { RadioProps } from '../../types/radio'; /** * Basic radio input wrapped in a label. * Built on top of the [Radio from Theme-UI](https://theme-ui.com/components/radio/) and uses the * available [props from Theme-UI](https://theme-ui.com/sx-prop). * * **Note: Requires a label. It's recommended to use `RadioGroupField` with `RadioField` for a** * **solution.** */ declare const Radio: React.ForwardRefExoticComponent>; export default Radio;