UNPKG

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