import React from 'react'; import { RadioProps } from './Radio.types'; /** * # Radio * * Radio component * * ``` Radio 1 ``` * @param props.disabled Boolean that determines if the Radio is disabled. * @param props.children Content that will appear inside of Radio. * @param props.value Used to determine what Radio is active. * @param props.id Id for Radio and respective label. * @param props.default If RadioGroup is uncontrolled, the default property makes this Radio checked on the initial render. * @param props.className className supplied to Radio container. * @param props.size Size of Radio buttons. */ declare function Radio({ children, className, onChange, value, disabled, id, name, darkMode: darkModeProp, checked, size, description, bold, ...rest }: RadioProps): React.JSX.Element; declare namespace Radio { var displayName: string; } export default Radio; //# sourceMappingURL=Radio.d.ts.map