import { type MRT_ColumnDef } from 'mantine-react-table'; import React from 'react'; interface TableDownloadProps> { columns: MRT_ColumnDef[]; data: T[]; } declare const TableDownload: React.FC>; export default TableDownload;