import { ReactElement } from 'react';
import { CheckboxProps } from '@mui/material/Checkbox';
interface Props {
    label?: string;
}
export declare function CheckboxCustom({ label, ...props }: CheckboxProps & Props): ReactElement;
export {};
