import type React from 'react'; import type { BaseInputProps, GlobalHTMLAttributes } from './types'; export interface RadioProps extends GlobalHTMLAttributes, BaseInputProps { /** * Concise label for the radio. */ label: string; /** * The value that will be submitted with the form data if the radio is selected. * * @default 'on' * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/radio#data_representation_of_a_radio_group */ value?: string; } /** * Radios allow the user to select a single option from a group. * * Radios are designed to be used with the RadioGroup component. * * A Radio is a controlled component if the `value` is set on the parent RadioGroup. */ export declare const Radio: React.ForwardRefExoticComponent>;