import { ComponentProps, ForwardRefExoticComponent, RefAttributes } from 'react'; type DataGridCellProps = ComponentProps<'div'> & { isPinned?: boolean; isLastPinned?: boolean; colIndex?: number; textValue?: string; truncate?: boolean; }; declare const DataGridCell: ForwardRefExoticComponent>; export { DataGridCell, type DataGridCellProps };