export interface ConvertOptions { slides?: number[]; fontDirs?: string[]; fontMap?: Record; dpi?: number; onWarning?: (msg: string) => void; } /** * Convert a PPTX buffer to a PDF buffer. */ export declare function convert(pptxBuffer: Buffer | Uint8Array, options?: ConvertOptions): Promise; export type { Presentation } from './types/presentation'; export type { Slide } from './types/slide'; export type { SlideElement, AutoShape, Picture, Table, GroupShape, Connector } from './types/shape'; export type { TextBody, Paragraph, TextRun } from './types/text'; export type { Fill, SolidFill, GradientFill } from './types/fill'; export type { ResolvedColor } from './types/color'; //# sourceMappingURL=index.d.ts.map