import * as React from 'react'; import { GridAlignment, GridCellMode, GridCellValue, GridRowId } from '../../models/index'; export interface GridCellProps { align: GridAlignment; className?: string; colIndex: number; field: string; rowId: GridRowId; formattedValue?: GridCellValue; hasFocus?: boolean; height: number; isEditable?: boolean; isSelected?: boolean; rowIndex: number; showRightBorder?: boolean; value?: GridCellValue; width: number; cellMode?: GridCellMode; children: React.ReactNode; tabIndex: 0 | -1; } export declare const GridCell: React.NamedExoticComponent;