import * as react from 'react';

interface CheckboxCellProps extends React.InputHTMLAttributes<HTMLInputElement> {
    isSelected?: boolean;
    isIndeterminate?: boolean;
}
declare const CellCheckbox: react.ForwardRefExoticComponent<CheckboxCellProps & react.RefAttributes<unknown>>;

export { CellCheckbox as default };
