import React from "react"; import { TableCellProps, TableFooterProps } from "@mui/material"; export interface TableSummaryProps extends React.PropsWithChildren { columns: number; rowProps?: TableFooterProps; cellProps?: TableCellProps; } export declare const TableSummary: React.FC;