import { default as React } from 'react'; import { FlexProps } from '../Flex'; export interface TableCellProps extends React.PropsWithChildren, FlexProps { onClick?: (event: React.MouseEvent) => void; as?: 'td' | 'th'; className?: string; ref?: React.Ref; } declare function TableCell(props: TableCellProps): import("react/jsx-runtime").JSX.Element; export default TableCell;