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;