export default CheckboxInputField; /** * A component with Input Field when it checked */ declare function CheckboxInputField({ input: { value, onChange }, meta, onChange: onChangeProp, checked: checkedProp, MuiInputProps, ...other }: { [x: string]: any; input: { value: any; onChange: any; }; meta: any; onChange: any; checked: any; MuiInputProps: any; }): JSX.Element; declare namespace CheckboxInputField { namespace propTypes { const input: PropTypes.Validator; const meta: PropTypes.Validator; const MuiInputProps: PropTypes.Requireable; } } import PropTypes from "prop-types";