/// import { FormControlLabelProps } from '@mui/material/FormControlLabel'; import { CheckboxProps } from 'formik-mui'; interface CheckboxLabelProps extends CheckboxProps { label: FormControlLabelProps['label']; disabled?: boolean; } export default function CheckboxLabel({ label, disabled, sx, ...props }: CheckboxLabelProps): JSX.Element; export {};