import {Component} from 'react'; declare type RadioButtonProps = { data: any[] | any; disabled: boolean; }; declare type RadioButtonState = { value: string | null; }; declare class RadioButton extends Component< RadioButtonProps, RadioButtonState > { state: RadioButtonState; render(): JSX.Element; } export default RadioButton;