UNPKG

es-grid-template

Version:

es-grid-template

8 lines (7 loc) 281 B
import type { Table } from "@tanstack/react-table"; import React from "react"; interface TableFooterProps<T> { table: Table<T>; } declare const TableFooter: <RecordType extends object>({ table, }: TableFooterProps<RecordType>) => React.JSX.Element; export default TableFooter;