import type { Column } from "@tanstack/react-table";
import React from "react";
interface TableFooterCellProps<T> {
    column: Column<T, any>;
}
declare const TableFooterCell: <RecordType extends object>({ column }: TableFooterCellProps<RecordType>) => React.JSX.Element;
export default TableFooterCell;
