UNPKG

@arco-design/web-react

Version:

Arco Design React UI Library.

13 lines (12 loc) 415 B
import { HTMLAttributes, ReactNode } from 'react'; import { Omit } from '../../_util/type'; interface SummaryCellProps extends Omit<HTMLAttributes<HTMLTableDataCellElement>, 'children'> { children?: ReactNode; colSpan?: number; rowSpan?: number; } declare function Cell(props: SummaryCellProps): JSX.Element; declare namespace Cell { var __ARCO_TABLE_SUMMARY_CELL__: boolean; } export default Cell;