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