import React from 'react'; interface TableDownloadProps { columns: { header: string; accessor: keyof T; }[]; data: T[]; } declare const TableDownload: React.FC>; export default TableDownload; export type { TableDownloadProps };