import React, { PureComponent } from 'react'; import PropTypes from 'prop-types'; export interface CheckboxInnerProps { 'aria-describedby'?: React.AriaAttributes['aria-describedby']; 'aria-errormessage'?: React.AriaAttributes['aria-errormessage']; 'aria-invalid'?: React.AriaAttributes['aria-invalid']; 'aria-labelledby'?: React.AriaAttributes['aria-labelledby']; 'aria-required'?: React.AriaAttributes['aria-required']; indeterminate?: boolean; checked?: boolean; disabled?: boolean; prefixCls?: string; name?: string; isPureCardType?: boolean; ref?: React.MutableRefObject | ((ref: CheckboxInner) => void); addonId?: string; extraId?: string; 'aria-label'?: React.AriaAttributes['aria-label']; focusInner?: boolean; onInputFocus?: (e: any) => void; onInputBlur?: (e: any) => void; preventScroll?: boolean; } declare class CheckboxInner extends PureComponent { static contextType: React.Context; static propTypes: { 'aria-describedby': PropTypes.Requireable; 'aria-errormessage': PropTypes.Requireable; 'aria-invalid': PropTypes.Requireable; 'aria-labelledby': PropTypes.Requireable; 'aria-required': PropTypes.Requireable; checked: PropTypes.Requireable; disabled: PropTypes.Requireable; onChange: PropTypes.Requireable<(...args: any[]) => any>; children: PropTypes.Requireable; grouped: PropTypes.Requireable; value: PropTypes.Requireable; isPureCardType: PropTypes.Requireable; addonId: PropTypes.Requireable; extraId: PropTypes.Requireable; focusInner: PropTypes.Requireable; onInputFocus: PropTypes.Requireable<(...args: any[]) => any>; onInputBlur: PropTypes.Requireable<(...args: any[]) => any>; preventScroll: PropTypes.Requireable; }; static defaultProps: { onChange: (...args: any[]) => void; }; inputEntity: HTMLInputElement; blur(): void; focus(): void; render(): React.JSX.Element; } export default CheckboxInner;