import React, { InputHTMLAttributes } from 'react'; import { RadioInputProps } from './IRadio'; export default class Radio extends React.PureComponent & Partial>> { _handleRootClick: () => void; /** * stops the root parent div from firing it's onClick */ _handleInputClick: (event: React.MouseEvent) => void; render(): JSX.Element; }