import * as React from 'react'; import CheckboxProps from './CheckboxPropsType'; export default class Checkbox extends React.Component { static propTypes: { style: React.Requireable; checked: React.Requireable; defaultChecked: React.Requireable; disabled: React.Requireable; onChange: React.Requireable; }; static CheckboxItem: any; static AgreeItem: any; constructor(props: CheckboxProps, context: any); componentWillReceiveProps(nextProps: CheckboxProps, nextContext: any): void; toggle(): void; handleClick: () => void; render(): JSX.Element; }