import * as Excel from "exceljs/dist/exceljs.js"; import { IRow, ITableColumn } from "../Table"; export interface IExcelExportOptions { fileName?: string; worksheetName?: string; styling?: (worksheet: Excel.Worksheet) => void; } export declare function createExcelExportDownload(columns: Array>, data: TRow[], options?: IExcelExportOptions): Promise;