/// import { SwitchBaseProps } from "@mui/material/internal/SwitchBase"; export interface LabeledCheckboxProps { checked: SwitchBaseProps['checked']; onChange: SwitchBaseProps['onChange']; name: string; label: string; } declare function LabeledCheckbox(props: LabeledCheckboxProps): JSX.Element; export default LabeledCheckbox;