import { CheckboxCell } from './CheckboxCell'; export const SelectAllCheckbox = ({ indeterminate, onChange, }: { indeterminate?: boolean; onChange?: (newCheckedValue: boolean) => void; } & React.HTMLProps) => { return ( ); };