import { HTMLAttributes, ReactNode } from 'react';
import { Omit } from '../../_util/type';
interface SummaryCellProps extends Omit, '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;