UNPKG

es-grid-template

Version:

es-grid-template

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