/// import { CheckboxProps as MuiCheckboxProps } from "@material-ui/core/Checkbox"; export interface CheckboxProps extends MuiCheckboxProps { label?: string; } declare const Checkbox: (props: CheckboxProps) => JSX.Element; export default Checkbox;