import * as _heroui_system from '@heroui/system'; import { HTMLHeroUIProps } from '@heroui/system'; import { GridNode } from '@react-types/grid'; import { Key } from 'react'; import { ValuesType } from './use-table.js'; import '@react-types/table'; import '@heroui/theme'; import '@react-stately/virtualizer'; import '@react-types/shared'; import '@react-stately/table'; import '@react-aria/table'; import '@heroui/react-utils'; import '@heroui/checkbox'; interface TableCellProps extends HTMLHeroUIProps<"td"> { /** * The key of the table row. */ rowKey: Key; /** * The table cell. */ node: GridNode; slots: ValuesType["slots"]; state: ValuesType["state"]; classNames?: ValuesType["classNames"]; } declare const TableCell: _heroui_system.InternalForwardRefRenderFunction<"td", TableCellProps, never>; export { type TableCellProps, TableCell as default };