export interface PptxResourceGuardOptions{maxEntries?:number;maxUncompressedBytes?:number;signal?:AbortSignal;} /** Checks ZIP entry count and measured expansion before the PPTX renderer opens an archive. */ export declare function assertPptxArchiveWithinLimits(source:ArrayBuffer,options?:PptxResourceGuardOptions):Promise;