import { default as React } from 'react'; import { TableCellProps } from './TableCell'; export interface TableCellCheckboxProps extends TableCellProps { checked?: boolean; isPlaceholder?: boolean; disabled?: boolean; } declare function TableCellCheckbox(props: TableCellCheckboxProps): import("react/jsx-runtime").JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;