import type { SxProps } from '@mui/material'; import React, { FC } from 'react'; export interface CheckboxProps { checked: boolean; onChange: (event: React.ChangeEvent, checked: boolean) => void; disabled?: boolean; indeterminate?: boolean; sx?: SxProps; label?: string; } declare const Checkbox: FC; export default Checkbox;