import { Store } from '@ngrx/store'; import { ExportToPngService } from '../export-to-png/export-to-png.service'; import { ExportToSvgService } from '../export-to-svg/export-to-svg.service'; import { ExportToPdfService } from '../export-to-pdf/export-to-pdf.service'; import { PdfOptions } from './exportToPdfOptions.type'; import { SidenavState } from '../../../toolbar/shared/store'; export declare class ExportService { private exportToSvgService; private exportToPngService; private exportToPdfService; private store; private pdfOptions; visualizationElement: any; selectedTab: number; constructor(exportToSvgService: ExportToSvgService, exportToPngService: ExportToPngService, exportToPdfService: ExportToPdfService, store: Store, pdfOptions: PdfOptions); getVisualizationElement(): any; exportToPng(): void; exportToSvg(): void; exportToPdf(): void; }