import { ReactNode } from 'react'; import { CheckboxProps as MuiCheckboxProps, FormControlLabelProps, FormControlProps, FormHelperTextProps } from '@mui/material'; export type CheckBoxProps = Omit & { label?: string; required?: boolean; helperText?: ReactNode; value?: boolean; error?: boolean; disabled?: boolean; name?: string; slotProps?: { formControlLabel?: Omit; helperText?: FormHelperTextProps; formControl?: Omit; }; }; declare const Checkbox: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; declare module '@mui/material' { interface Components { ReevolveCheckbox?: { defaultProps?: Partial; }; } } export default Checkbox; //# sourceMappingURL=Checkbox.d.ts.map