export default CheckboxField; declare function CheckboxField({ input: { value, ...otherInput }, meta, ...other }: { [x: string]: any; input: { [x: string]: any; value: any; }; meta: any; }): JSX.Element; declare namespace CheckboxField { namespace propTypes { const input: PropTypes.Validator; const meta: PropTypes.Validator; } } import PropTypes from "prop-types";