es-grid-template
Version:
es-grid-template
9 lines (8 loc) • 352 B
TypeScript
import type { HeaderGroup, Table } from "@tanstack/react-table";
import React from "react";
interface TableFooterRowProps<T> {
table: Table<T>;
headerGroup: HeaderGroup<T>;
}
declare const TableFooterRow: <RecordType extends object>({ table, headerGroup, }: TableFooterRowProps<RecordType>) => React.JSX.Element;
export default TableFooterRow;