import * as React from "react"; export interface CellProps extends React.TdHTMLAttributes { truncate?: boolean; } declare const Cell: ({ className, truncate, ...props }: CellProps) => React.JSX.Element; export { Cell };