import type { Row } from '@tanstack/react-table'; import * as React from 'react'; export declare const DataTableRowSelectionCheckbox: ({ row, checked, onCheckedChange, label }: { row: Row>; checked: boolean | "indeterminate"; onCheckedChange: (value: boolean) => void; label?: string; }) => React.ReactElement;