import * as React from 'react'; import type { StatefulContainerProps, DefaultStatefulProps, CheckboxReducerState } from './types'; import type { ChangeEvent } from 'react'; declare class StatefulCheckboxContainer extends React.Component { static defaultProps: DefaultStatefulProps; constructor(props: StatefulContainerProps); onChange: (e: ChangeEvent) => void; onMouseEnter: (e: ChangeEvent) => void; onMouseLeave: (e: ChangeEvent) => void; onFocus: (e: ChangeEvent) => void; onBlur: (e: ChangeEvent) => void; stateReducer: (type: string, e: ChangeEvent) => void; render(): React.ReactNode; } export default StatefulCheckboxContainer;