export default CheckboxContainer; declare class CheckboxContainer extends React.Component { static defaultProps: { partial: boolean; disabled: boolean; }; static propTypes: { checked: PropTypes.Validator; partial: PropTypes.Requireable; onClick: PropTypes.Validator<(...args: any[]) => any>; disabled: PropTypes.Requireable; id: PropTypes.Requireable; }; constructor(props: Readonly); constructor(props: any, context?: any); render(): JSX.Element; } import React from "react"; import PropTypes from "prop-types";