import React from 'react'; import { RadioOption, RadioInputValue } from './radioInputTypes'; interface RadioButtonProps { radioOption: RadioOption; name: string; enabled: boolean; inline: boolean; value: RadioInputValue; onChange(value: string | number): void; } /** @internal */ export declare function RadioButton(props: RadioButtonProps): React.ReactElement; export {};