import React, { Component } from 'react'; import PropTypes from 'prop-types'; import type { RadioItemProps } from '../types'; export default class RadioItem extends Component { static menuChildType: string; static propTypes: { checked: PropTypes.Requireable; disabled: PropTypes.Requireable; onChange: PropTypes.Requireable<(...args: any[]) => any>; helper: PropTypes.Requireable; children: PropTypes.Requireable; }; static defaultProps: { checked: boolean; disabled: boolean; onChange: () => void; }; render(): React.JSX.Element; }