import React from 'react'; import { CheckboxProps as MUICheckboxProps } from '@material-ui/core'; declare type SelectAllCheckboxProps = { label: string; isSelected?: boolean; isIndeterminate?: boolean; } & MUICheckboxProps; declare const SelectAllCheckbox: React.FC; export default SelectAllCheckbox;