import React from 'react'; export interface TableCellProps { padding?: string; numeric?: boolean; children: React.ReactNode; } /**@ReactComponent * * 表格中的列 */ declare const TableCell: React.SFC; export default TableCell;