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