UNPKG

es-grid-template

Version:

es-grid-template

8 lines (7 loc) 305 B
import type { Column } from "@tanstack/react-table"; import React from "react"; interface TableFooterCellProps<T> { column: Column<T, any>; } declare const TableFooterCell: <RecordType extends object>({ column }: TableFooterCellProps<RecordType>) => React.JSX.Element; export default TableFooterCell;