/// <reference types="react" />
import type { HeaderGroup, Table } from "@tanstack/react-table";
interface TableFooterRowProps<T> {
    table: Table<T>;
    headerGroup: HeaderGroup<T>;
}
declare const TableFooterRow: <RecordType extends object>({ table, headerGroup, }: TableFooterRowProps<RecordType>) => JSX.Element;
export default TableFooterRow;
