import React from 'react'; export interface TableRowProps { /** * 类型 * * @type {string} * @memberof TableRowProps */ type?: string; /** * 子元素 * * @type {React.ReactNode} * @memberof TableRowProps */ children?: React.ReactNode; /** * 元素是否被选中 * * @type {boolean} * @memberof TableRowProps */ selected?: boolean; } /** * @ReactComponent * * 表格行 * * @export * @param {any} props * @param {any} context * @returns */ declare const TableRow: React.SFC; export default TableRow;