import * as React from 'react'; import { RowState, SingleRowAction, ComponentProps } from './types'; type TableCellCheckboxProps = { name: string; keyField: string; row: T; rowCount: number; selected: boolean; selectableRowsComponent: 'input' | React.ReactNode; selectableRowsComponentProps: ComponentProps; selectableRowsSingle: boolean; selectableRowDisabled: RowState; onSelectedRow: (action: SingleRowAction) => void; }; declare function TableCellCheckbox({ name, keyField, row, rowCount, selected, selectableRowsComponent, selectableRowsComponentProps, selectableRowsSingle, selectableRowDisabled, onSelectedRow, }: TableCellCheckboxProps): JSX.Element; export default TableCellCheckbox;