import React from 'react'; import { TableCellAlignType } from './types'; /** * 单元格垂直方向对齐方式 * * 参考:http://officeopenxml.com/WPtableCellProperties-verticalAlignment.php */ declare const TableCellAlign: React.SFC<{ align: TableCellAlignType; children?: unknown; }>; export default TableCellAlign;