import { OwnerStateThemeType } from '.';
declare const Checkbox: () => {
    MuiCheckbox: {
        styleOverrides: {
            root: ({ theme }: OwnerStateThemeType) => {
                width: string;
                height: string;
                padding: number;
                '&.MuiCheckbox-colorPrimary': {
                    color: string;
                    '&.Mui-checked': {
                        color: string;
                        '&.Mui-disabled': {
                            color: string;
                        };
                    };
                    '&.Mui-disabled': {
                        color: string;
                    };
                    '&:hover': {
                        color: string;
                        '&.Mui-checked': {
                            color: string;
                        };
                    };
                };
            };
        };
    };
};
export default Checkbox;
