import React from 'react'; import { CheckboxProps as MuiCheckboxProps } from 'formik-mui'; interface CheckboxProps extends MuiCheckboxProps { triggerOnChange?: (v: any) => Promise; } /** Custom styles on top of MUI's `Checkbox` component */ declare const Checkbox: React.FC; export default Checkbox;