/// import React from 'react'; import CheckboxGroup from './Group'; export interface AbstractCheckboxProps { prefixCls?: string; className?: string; defaultChecked?: boolean; checked?: boolean; style?: React.CSSProperties; disabled?: boolean; onChange?: React.ChangeEventHandler; onMouseEnter?: React.MouseEventHandler; onMouseLeave?: React.MouseEventHandler; value?: any; name?: string; children?: React.ReactNode; } export interface CheckboxProps extends AbstractCheckboxProps { indeterminate?: boolean; } export default class Checkbox extends React.Component { static Group: typeof CheckboxGroup; static defaultProps: { prefixCls: string; indeterminate: boolean; }; static contextTypes: { checkboxGroup: any; }; shouldComponentUpdate(nextProps: any, nextState: any, nextContext: any): boolean; render(): JSX.Element; }