import React from 'react'; import type { GridRowId } from '../types'; export type GridCellProps = { rowId: GridRowId; columnId: string; renderColumnId?: string; spanColumns?: string[]; virtualStart?: number; }; export declare const GridCell: ({ rowId, columnId, renderColumnId, virtualStart, spanColumns, }: GridCellProps) => React.JSX.Element; export declare const GridCellMemo: typeof GridCell; //# sourceMappingURL=grid-cell.d.ts.map