import React from 'react'; import { ColumnType } from '../../types/column.type'; import { RowId } from '../../types/row.type'; export interface RowCellItemProps extends React.HTMLAttributes { rowId: RowId; column: ColumnType; row: T; columnWidth: number; colIndex: number; startOffset?: number; endOffset?: number; showPinBorder?: boolean; } export declare const RowCellItem: (props: RowCellItemProps) => import("react/jsx-runtime").JSX.Element;