import * as PropTypes from 'prop-types'; import * as React from 'react'; export default class _FieldCheckbox extends React.Component { static propTypes: { name: PropTypes.Requireable; value: PropTypes.Requireable; shouldRsa: PropTypes.Requireable; required: PropTypes.Requireable; disabled: PropTypes.Requireable; onChange: PropTypes.Requireable<(...args: any[]) => any>; handleFieldChange: PropTypes.Requireable<(...args: any[]) => any>; }; static defaultProps: { required: boolean; disabled: boolean; onChange: () => void; handleFieldChange: () => void; }; handleChange: (e: any) => void; constructor(props: any); readonly data: { name: any; value: any; shouldRsa: any; }; componentWillReceiveProps(nextProps: any): void; componentDidUpdate(preProps: any, preState: any): void; render(): JSX.Element; }