import type { SlickGrid } from '../core/index.js'; import type { ExternalResource, PdfExportOption } from '../interfaces/index.js'; import type { ContainerService } from '../services/container.service.js'; export declare abstract class PdfExportService implements ExternalResource { /** PdfExportService 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; /** * Export to PDF file * @param _options - PDF export options * @return {Promise} Promise that resolves when export is complete */ exportToPdf(_options?: PdfExportOption): Promise; } //# sourceMappingURL=pdfExport.service.d.ts.map