import { t as BlobExporter } from "./exporter-ZZesPOOU.cjs";

//#region src/exporters/excelExporter.d.ts
declare class ExcelExporter implements BlobExporter {
  readonly type = "xlsx";
  readonly fileEnding = "xlsx";
  exportToBlob(columns: (string | number | Date)[], rows: (string | number | Date)[][]): Blob;
}
export = ExcelExporter;
//# sourceMappingURL=excelExporter.d.cts.map