import type { SlickGrid } from '../core/index.js'; import type { ExcelExportOption, ExternalResource } from '../interfaces/index.js'; import type { ContainerService } from '../services/container.service.js'; export declare abstract class ExcelExportService implements ExternalResource { /** ExcelExportService class name which is use to find service instance in the external registered services */ pluginName: string; /** * Initialize the Export Service * @param _grid * @param _containerService */ init(_grid: SlickGrid, _containerService: ContainerService): void; /** * Method to return the current locale used by the App * @return {string} current locale */ exportToExcel(_options?: ExcelExportOption): Promise; } //# sourceMappingURL=excelExport.service.d.ts.map