import type { CheckboxProps } from '@mui/material/Checkbox'; export interface ICheckboxProps extends CheckboxProps { size?: 'small' | 'medium'; label?: string; /** * Border Color of the component becomes Red */ alert?: boolean; disabled?: boolean; reverse?: boolean; } declare const Checkbox: ({ size, sx, label, disabled, alert, reverse, ...otherProps }: ICheckboxProps) => import("react/jsx-runtime").JSX.Element; export default Checkbox;