import type { BoxProps, CheckboxProps as MuiCheckboxProps } from '@mui/material';
export interface CheckboxProps extends Omit<BoxProps<'span'>, 'onChange' | 'onChangeCapture'> {
    value?: MuiCheckboxProps['value'];
    name?: MuiCheckboxProps['name'];
    checked?: MuiCheckboxProps['checked'];
    defaultChecked?: MuiCheckboxProps['defaultChecked'];
    disabled?: MuiCheckboxProps['disabled'];
    required?: MuiCheckboxProps['required'];
    indeterminate?: MuiCheckboxProps['indeterminate'];
    onChange?: MuiCheckboxProps['onChange'];
    onChangeCapture?: MuiCheckboxProps['onChangeCapture'];
    label?: string;
    inputProps?: MuiCheckboxProps['inputProps'];
    inputRef?: MuiCheckboxProps['inputRef'];
}
