import type { TableProps } from './Table'; export type TableCellProps = TableProps & { align?: 'start' | 'center' | 'end' | 'justify' | object; clickable?: boolean; }; declare const TableCell: ({ align, clickable, children, ...props }: TableCellProps) => import("react/jsx-runtime").JSX.Element; export default TableCell; //# sourceMappingURL=TableCell.d.ts.map