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<object>;
        const meta: PropTypes.Validator<object>;
    }
}
import PropTypes from "prop-types";
