import * as _chakra_ui_system_dist_system_types from '@chakra-ui/system/dist/system.types'; import { RadioProps as RadioProps$1 } from '@chakra-ui/react'; type RadioProps = Exclude; /** * The humble radio button. * * Specify the label as `children` and the value as `value`. * * ```tsx * Red * ``` * * You typically want to place Radio components in a group with several other Radio components. You can do that with the `RadioGroup` component. * * ```tsx * * Economy * Business * First Class * */ declare const Radio: _chakra_ui_system_dist_system_types.ComponentWithAs<"input", RadioProps$1>; export { Radio, RadioProps };