import { FunctionComponent } from 'react';
import { DraggableProvided } from 'react-beautiful-dnd';
import Record from '../data-set/Record';
import { ElementProps } from '../core/ViewComponent';
import { ColumnLock } from './enum';
import ColumnGroup from './ColumnGroup';
export interface TableCellProps extends ElementProps {
    columnGroup: ColumnGroup;
    record: Record;
    colSpan?: number;
    isDragging: boolean;
    lock?: ColumnLock | boolean;
    provided?: DraggableProvided;
    disabled?: boolean;
    inView?: boolean | undefined;
}
declare const TableCell: FunctionComponent<TableCellProps>;
export default TableCell;
