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