import React from 'react';
export interface IProps {
    record: Record<string, any>;
    rowKey: string;
    col: any;
    rowIndex: number;
    colIndex: number;
    [key: string]: any;
}
declare const SheelTabelCell: React.FC<IProps>;
export default SheelTabelCell;
