import { PptxData, PptxSlide, SvgExportOptions } from 'pptx-viewer-core'; export type SvgExportSingleSlideOptions = SvgExportOptions; export type SvgExportAllOptions = SvgExportOptions; /** Export one parsed slide as self-contained SVG markup. */ export declare function exportSlideToSvg(slide: PptxSlide, width: number, height: number, options?: SvgExportSingleSlideOptions): string; /** Export one parsed slide as an SVG Blob. */ export declare function exportSlideToSvgBlob(slide: PptxSlide, width: number, height: number, options?: SvgExportSingleSlideOptions): Blob; /** Export one parsed slide as an SVG download. */ export declare function exportSlideAsSvg(slide: PptxSlide, slideIndex: number, width: number, height: number, options?: SvgExportSingleSlideOptions): void; /** Export the selected presentation slides as SVG strings. */ export declare function exportAllSlidesToSvg(data: PptxData, options?: SvgExportAllOptions): string[]; /** Export the selected presentation slides as SVG Blobs. */ export declare function exportAllSlidesToSvgBlobs(data: PptxData, options?: SvgExportAllOptions): Blob[]; //# sourceMappingURL=export-svg.d.ts.map