import React from 'react'; import { CheckboxProps as MUICheckboxProps } from '@material-ui/core'; import { FieldProps } from './ComponentTypes'; declare type CheckboxProps = { value?: boolean; checkedValue?: string; } & FieldProps & MUICheckboxProps; declare const Checkbox: React.FC; export default Checkbox;