import { type ReactNode } from 'react'; import { type TableCellProps } from '../../Table'; import { type DataGridColumns } from '../types'; export type CellProps = TableCellProps & { row: TData; cell: DataGridColumns; emptyCellValue?: ReactNode; }; export declare const DataGridCell: ({ row, cell: { field, renderCell, format, align }, emptyCellValue, isDisabled, }: CellProps) => JSX.Element;