export class RowRadioButton extends React.Component { static defaultProps: { rowData: null; onClick: null; selected: boolean; }; static propTypes: { rowData: PropTypes.Requireable; onClick: PropTypes.Requireable<(...args: any[]) => any>; selected: PropTypes.Requireable; }; constructor(props: any); onClick(event: any): void; onFocus(): void; onBlur(): void; onChange(event: any): void; onKeyDown(event: any): void; input: HTMLInputElement | null | undefined; } import React from "react"; import PropTypes from "prop-types";