UNPKG

@trail-ui/react

Version:
10 lines (7 loc) 322 B
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 };