/// import { Component } from 'react'; import { CheckboxPropTypes, State } from './PropsType'; export default class Checkbox extends Component { static defaultProps: { prefixCls: string; className: string; type: string; defaultChecked: boolean; onFocus: () => any; onBlur: () => any; onChange: () => any; }; state: { checked: boolean; }; componentWillReceiveProps(nextProps: any): void; shouldComponentUpdate(...args: any[]): any; handleChange: (e: any) => void; render(): JSX.Element; }