UNPKG

308 BTypeScriptView Raw
1import * as React from 'react';
2export interface SummaryCellProps {
3 className?: string;
4 children?: React.ReactNode;
5 index: number;
6 colSpan?: number;
7 rowSpan?: number;
8}
9export default function SummaryCell({ className, index, children, colSpan, rowSpan, }: SummaryCellProps): JSX.Element;