import React from 'react'; import { WidthUnit } from './types'; interface Props { /** * 宽度 */ width: string | number; /** * 类型 */ type?: WidthUnit; } /** * 单元格宽度 * @param param0 */ declare const TableCellWidth: React.SFC; export default TableCellWidth;