import type XLSX_NS from 'xlsx';
import type { ArtColumn } from '../interfaces';
/** Export table data to an Excel file based on BaseTable's dataSource and columns */
export default function exportTableAsExcel(xlsxPackage: typeof XLSX_NS, dataSource: any[], columns: ArtColumn[], filename: string): void;
