import * as React from 'react'; import { Creatable } from '../generic'; import { RadioOptionProps } from './RadioOption.types'; declare type RadioOptionComponent = Creatable< React.VoidFunctionComponent >; declare const RadioOption: RadioOptionComponent; export default RadioOption;